2021-04-22 20:56:38 +02:00

3 lines
68 B
Verilog

module not_gate(input _a, output _y0);
assign _y0 = ~_a;
endmodule