nextpnr/fpga_interchange/examples/const_wire/wire.v
Keith Rothman cf554f9338 Add constant network test case.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
2021-02-23 14:09:27 -08:00

7 lines
80 B
Verilog

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