blob: 18e87201e71e7c005baaa970c93891d067c2f8a1 [file] [log] [blame]
// 4-input, route-through LUT test.
module top( (* keep *) input [3:0] I, output O);
//Cell instances
SB_LUT4 #(
.LUT_INIT(16'b0100000000000000)
) LUT (
.I0(),
.I1(I[1]),
.I2(),
.I3(),
.O(O)
);
endmodule // top