blob: 72b0ebf97bb7758d7dc242ff4c601f0258cbf9a3 [file] [log] [blame] [edit]
module top(
input wire [3:0] I,
output wire O
);
LUT4 #(.INIT(0)) the_lut (
.I0(I[0]),
.I1(I[1]),
.I2(I[2]),
.I3(I[3]),
.O(O)
);
endmodule