makeResponsePorts method

  1. @protected
void makeResponsePorts()

Helper to instantiate ACE specific request ports.

Implementation

@protected
void makeResponsePorts() {
  setPorts([
    if (respWidth > 0) Logic.port('${prefix}RESP', respWidth),
    if (useBusy) Logic.port('${prefix}BUSY', 2),
  ], [
    PairDirection.fromConsumer,
  ]);
}