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

8
chapter2/invGate.v Normal file
View File

@@ -0,0 +1,8 @@
module invGate (
input A,
output B
);
not a1 (B, A);
endmodule