nextpnr/fpga_interchange/examples/const_wire/wire.v

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