Forum Discussion
Altera_Forum
Honored Contributor
8 years agoInstantiating VHDL entity in Systemverilog
I am trying to instantiate a VHDL entity in systemverilog. In the VHDL entity “iobits” is defined as follows. iobits : inout std_logic_vector (67 downto 0); because I am interfacing to...
Altera_Forum
Honored Contributor
8 years agoUnlike VHDL, SV doesn't allow bit-selects in module instance port names. You can use the port name with a concatenation as port expression.
.iobits({GPIO_0(16),GPIO_0(17), ... })