Forum Discussion
Altera_Forum
Honored Contributor
7 years ago --- Quote Start --- Unlike 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), ... }) --- Quote End --- I changed .iobits({GPIO_0(16),GPIO_0(17), ... }) to .iobits({GPIO_0[16],GPIO_0[17], ... }) and it gets rid of those errors. So thanks for at least pointing me in the right direction.