nextpnr/fpga_interchange/examples/tests/const_wire/wire.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

9 lines
138 B
Verilog

module top(output o, output o2, output o3, output o4);
assign o = 1'b0;
assign o2 = 1'b1;
assign o3 = 1'b0;
assign o4 = 1'b1;
endmodule