nand2tetris

This commit is contained in:
2024-12-10 01:25:05 +03:00
parent 2acbfd9d8d
commit c1d75786ef
31 changed files with 1058 additions and 24 deletions

View File

@ -0,0 +1,7 @@
module notGate (
input A_i,
output B_o
);
nand nand1 (B_o, A_i, A_i);
endmodule