16 lines
262 B
Verilog
16 lines
262 B
Verilog
`ifndef _or16_v
|
|
`define _or16_v
|
|
|
|
`include "or.v"
|
|
|
|
module Or16 (input [15:0] a, input [15:0] b, output [15:0] out);
|
|
|
|
genvar i;
|
|
generate
|
|
for (i=0; i<16; i=i+1)
|
|
Or u1 (.a(a[i]), .b(b[i]), .out(out[i]));
|
|
endgenerate
|
|
endmodule
|
|
|
|
`endif
|