nand2/01_Boolean_Logic/Buffer16.v

15 lines
224 B
Coq
Raw Normal View History

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