makeDebugPorts method

  1. @protected
void makeDebugPorts()

Helper to instantiate ACE specific request ports.

Implementation

@protected
void makeDebugPorts() {
  setPorts([
    if (tracePresent) Logic.port('${prefix}TRACE'),
    if (loopWidth > 0) Logic.port('${prefix}LOOP', loopWidth),
  ], [
    if (main) PairDirection.fromProvider else PairDirection.fromConsumer,
  ]);
}