nand2Tetris
This commit is contained in:
5
iverilog/nand2tetris/nands/notGate.v
Normal file
5
iverilog/nand2tetris/nands/notGate.v
Normal file
@@ -0,0 +1,5 @@
|
||||
module notGate (input A,
|
||||
output B);
|
||||
|
||||
nand nand1 (B, A, A);
|
||||
endmodule
|
||||
Reference in New Issue
Block a user