nand2/07_Operating_System/00_HACK/Not.v

16 lines
148 B
Coq
Raw 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
);
// Put your code here:
not(out,in);
endmodule