nand2/01_Boolean_Logic/And16.v

16 lines
203 B
Coq
Raw Normal View History

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