nand2/02_Boolean_Arithmetic/Add16.v

17 lines
234 B
Coq
Raw Normal View History

2023-01-11 10:13:09 +00:00
/**
* Adds two 16-bit values.
* The most significant carry bit is ignored.
* out = a + b (16 bit)
*/
`default_nettype none
module Add16(
input [15:0] a,
input [15:0] b,
output [15:0] out
);
// Put your code here:
endmodule