nand2/01_Boolean_Logic/Not16.v

15 lines
171 B
Coq
Raw Normal View History

2023-01-11 10:13:09 +00:00
/**
* 16-bit Not:
* for i=0..15: out[i] = not in[i]
*/
`default_nettype none
module Not16(
input [15:0] in,
output [15:0] out
);
// Put your code here:
endmodule