makeQualifierPorts method
Helper to instantiate ACE specific request ports.
Implementation
@protected
void makeQualifierPorts() {
setPorts([
if (useNsaId) Logic.port('${prefix}NSAID', 4),
if (usePbha) Logic.port('${prefix}PBHA', 4),
if (subSysIdWidth > 0) Logic.port('${prefix}SUBSYSID', subSysIdWidth),
if (actWidth > 0) Logic.port('${prefix}ACTV'),
if (actWidth > 0) Logic.port('${prefix}ACT', actWidth),
], [
PairDirection.fromProvider,
]);
}