nextpnr/fpga_interchange/examples/tests/lut/lut.v

6 lines
74 B
Verilog

module top(input i0, input i1, output o);
assign o = i0 | i1;
endmodule