makeMemoryAttributePorts method
Helper to instantiate ACE specific request ports.
Implementation
@protected
void makeMemoryAttributePorts() {
setPorts([
if (cacheWidth > 0) Logic.port('${prefix}CACHE', cacheWidth),
if (regionWidth > 0) Logic.port('${prefix}REGION', regionWidth),
if (mecIdWidth > 0) Logic.port('${prefix}MECID', mecIdWidth),
], [
PairDirection.fromProvider,
]);
}