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