makeMemoryAttributePorts method

  1. @protected
void makeMemoryAttributePorts()

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,
  ]);
}