nextpnr/fpga_interchange/examples/const_wire/wire.v
Keith Rothman 15459cae91 Initial working constant network support!
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
2021-02-23 14:09:27 -08: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