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