blob: 56b3174a1a23f691a3f2c847a4024de8154f5b7a [file] [log] [blame] [edit]
// 4-input, or LUT test.
module top( (* keep *) input [3:0] I, output O);
always @(I)
case(I)
4'b0000 : O = 0;
default : O = 1;
endcase
endmodule // top