nand2/02_Boolean_Arithmetic/Inc16.v
Michael Schröder 971b323822 added v2.0
2023-01-11 23:04:57 +01:00

15 lines
182 B
Verilog

/**
* 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