2024-12-01 13:42:54 +03:00

21 lines
226 B
Verilog

module notGateTB ();
reg A;
wire B;
notGate uut (
.A(A),
.B(B)
);
initial begin
$dumpfile("notGate.vcd");
$dumpvars;
A = 1'b0;
#10;
A = 1'b1;
#10;
$finish;
end
endmodule