nextpnr/fpga_interchange/examples/wire/wire.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
57 B
Verilog

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