blob: 97511e2c7cbb7c27aa92f5b3703f1ac8894f0bec [file] [log] [blame] [edit]
// 4-input, route-through LUT test.
module top( (* keep *) input [3:0] I, output O);
always @(I)
case(I)
4'b1??? : O = 1;
4'b0??? : O = 0;
endcase
endmodule // top