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

6 lines
74 B
Coq
Raw Permalink Normal View History

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