Forum Discussion
Altera_Forum
Honored Contributor
14 years agoIs is possible to split Qsys conduits
Hi, i desinged a system in Qsys with multiple devices that have conduit interfaces. One of the devices has a conduit interface (VHDL std_logic_vector). The elements of the standard_logic_vector...
Altera_Forum
Honored Contributor
14 years agoI guess you are asking a way to expose the separate signals out of the Qsys block.
If this is not mandatory, you can easily do the same externally with the following VHDL assignments. You have, for example Qsys_conduit : std_logic_vector(3 downto 0); So, you define: signal_to_device0 <= Qsys_conduit(0); signal_to_device1 <= Qsys_conduit(1); signal_to_device2 <= Qsys_conduit(2); signal_to_device3 <= Qsys_conduit(3);