nextpnr/fpga_interchange/examples/lut/lut.v
Keith Rothman 5a7f83c705 Add examples invoking FPGA interchange nextpnr.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
2021-02-17 12:03:16 -08:00

6 lines
74 B
Verilog

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