2024-12-02 02:42:36 +03:00

8 lines
83 B
Verilog

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