nand2/01_Boolean_Logic/Not.v

15 lines
170 B
Coq
Raw Permalink Normal View History

2023-01-11 10:13:09 +00:00
/**
* Not gate:
* out = not in
*/
`default_nettype none
module Not(
input in,
output out
2023-01-11 10:13:09 +00:00
);
// Put your code here:
Nand NOT1(in, in, out);
2023-01-11 10:13:09 +00:00
endmodule