top.v 276 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
// 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