nextpnr/fpga_interchange/examples/tests/wire/wire.v

6 lines
57 B
Verilog

module top(input i, output o);
assign o = i;
endmodule