16 lines
148 B
Coq
Raw Normal View History

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