2024-12-09 22:57:42 +03:00

8 lines
93 B
Verilog

module notGate (
input A_i,
output B_o
);
nand nand1 (B_o, A_i, A_i);
endmodule