nand2/02_Boolean_Arithmetic/Inc16.v

15 lines
182 B
Coq
Raw Normal View History

2023-01-11 10:13:09 +00:00
/**
* 16-bit incrementer:
* out = in + 1 (arithmetic addition)
*/
`default_nettype none
module Inc16(
input [15:0] in,
output [15:0] out
);
// Put your code here:
endmodule