Archived
1
0

Create xor_tb.v

This commit is contained in:
Erick
2022-03-04 01:38:43 +01:00
parent d65b968e96
commit 52c7210d0c
+18
View File
@@ -0,0 +1,18 @@
'include "predefined/xor_gate.v"
module nor_tb();
reg ta, tb;
wire ty;
xor_gate dut(y, ta, tb);
initial begin
ta=0, tb=0;
$monitor("IN: %b, %b ",ta, tb, "OUT: ",y);
ta=0, tb=1;
$monitor("IN: %b, %b ",ta, tb, "OUT: ",y);
ta=1, tb=0;
$monitor("IN: %b, %b ",ta, tb, "OUT: ",y);
ta=1, tb=1;
end
endmodule