nextpnr/fpga_interchange/examples/tests/lut/lut.v
Alessandro Comodi 77ffdd7fd4 fpga_interchange: tests: add cmake functions
Also move all tests in a tests directory

Signed-off-by: Alessandro Comodi <acomodi@antmicro.com>
2021-03-16 15:39:01 +01:00

6 lines
74 B
Verilog

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