mirror of
https://github.com/YosysHQ/nextpnr.git
synced 2026-05-05 23:45:42 +00:00
6 lines
74 B
Verilog
6 lines
74 B
Verilog
module top(input i0, input i1, output o);
|
|
|
|
assign o = i0 | i1;
|
|
|
|
endmodule
|