-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecod_TB.v
50 lines (49 loc) · 832 Bytes
/
decod_TB.v
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
`timescale 1ns / 1ps
module decod_TB;
reg en;
reg A, B;
wire Y3, Y2, Y1, Y0;
// Disponibilizando o DUT(Device-Under-Test)
decodificador_2_4 DUT(Y3, Y2, Y1, Y0, A, B, en);
initial
begin
A = 1'b0; // tempo = 0ns
B = 1'b0; // tempo = 0ns
en = 1'b1;// tempo = 0ns
#10;
A = 1'b0;
B = 1'b0;
#10;
A = 1'b1;
B = 1'b0;
#15;
A = 1'b0;
B = 1'b1;
#20;
A = 1'b1;
B = 1'b1;
#15;
A = 1'b0;
B = 1'b0;
#30;
A = 1'b1;
B = 1'b1;
#25;
A = 1'b1;
B = 1'b0;
#30;
A = 1'b1;
B = 1'b1;
#15
en = 1'b0;
#30;
A = 1'b0;
B = 1'b0;
#50 $stop;
end
always @(A or B or en)
begin
$display("tempo = %t",$time," enable = %b",en);
$display("A = %b B = %b Y = %b%b%b%b",A,B,Y3,Y2,Y1,Y0);
end
endmodule