verilog/hello_tb.v
2024-04-13 05:48:55 +03:00

18 lines
200 B
Verilog

module hello_tb();
reg A;
reg B;
wire C, D;
initial begin
$dumpfile("dmp.vcd");
$dumpvars;
A = 0; B = 0; #10;
A = 0; B = 1; #10;
A = 1; B = 0; #10;
A = 1; B = 1; #10;
$finish;
end
endmodule