nand2/01_Boolean_Logic/Not.v
Michael Schröder 971b323822 added v2.0
2023-01-11 23:04:57 +01:00

15 lines
134 B
Verilog

/**
* Not gate:
* out = not in
*/
`default_nettype none
module Not(
input in,
output out
);
// Put your code here:
endmodule