blob: 79da02145ae0cdbd5b532f71ce6a6becfb0733e0 [file] [log] [blame] [edit]
module top(
input wire [3:0] I,
output wire O
);
LUT3 #(.INIT(0)) the_lut (
.I0(I[0]),
.I1(I[1]),
.I2(I[2]),
.O(O)
);
endmodule