2024-12-01 13:42:54 +03:00

6 lines
93 B
Verilog

module notGate (input A,
output B);
nand nand1 (B, A, A);
endmodule