Forum Discussion
Altera_Forum
Honored Contributor
11 years agoYou make another 'helper' IP core.
Essentially create a Verilog of VHDL file like:
module pio_helper(
input pio1,
...
output piomerge
);
assign piomerge = pio1;
...
endmodule
Make a new component in Qsys using that module, and connect all your pio controllers to it. Then export the larger merged output from your Qsys system.