This commit is contained in:
2025-08-18 07:18:32 +03:00
commit 12dcc9d232
27 changed files with 1910 additions and 0 deletions

19
chapter2/invGateTB.v Normal file
View File

@@ -0,0 +1,19 @@
module invGateTB();
reg A;
wire B;
invGate uut (
.A(A),
.B(B)
);
initial begin
$dumpfile("invGate.vcd");
$dumpvars;
A = 1'b1; #10;
A = 1'b0; #10;
$finish;
end
endmodule