-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfifo_tb.v
More file actions
99 lines (78 loc) · 1.5 KB
/
Copy pathfifo_tb.v
File metadata and controls
99 lines (78 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
`timescale 1ns / 1ps
////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 09:38:33 05/07/2026
// Design Name: fifo
// Module Name: /home/ise/Documents/verilog/fifo/fifo_tb.v
// Project Name: fifo
// Target Device:
// Tool versions:
// Description:
//
// Verilog Test Fixture created by ISE for module: fifo
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
////////////////////////////////////////////////////////////////////////////////
module fifo_tb;
// Inputs
reg clk;
reg rst;
reg write;
reg read;
reg [7:0] data_in;
// Outputs
wire [7:0] data_out;
wire full;
wire empty;
// Instantiate the Unit Under Test (UUT)
fifo uut (
.clk(clk),
.rst(rst),
.write(write),
.read(read),
.data_in(data_in),
.data_out(data_out),
.full(full),
.empty(empty)
);
//clock generation
always #5 clk=~clk;
initial begin
// Initialize Inputs
clk = 0;
rst = 1;
write = 0;
read = 0;
#10;
rst = 0;
$display("Starting FIFO test...");
// Write data
write=1;
data_in=8'd10;
#10;
data_in=8'd20;
#10;
data_in=8'd30;
#10;
write=0;
// read data
read=1;
#10;
#10;
#10;
read=0;
$display("FIFO Test Completed");
$finish;
end
initial begin
$monitor("Time=%0t | write=%b read=%b data_in=%d data_out=%d full=%b empty=%b",
$time, write, read, data_in, data_out, full, empty);
end
endmodule