makeRequestPorts method

  1. @protected
void makeRequestPorts()

Helper to instantiate ACE specific request ports.

Implementation

@protected
void makeRequestPorts() {
  setPorts([
    Logic.port('${prefix}ADDR', addrWidth),
    if (lenWidth > 0) Logic.port('${prefix}LEN', lenWidth),
    if (sizeWidth > 0) Logic.port('${prefix}SIZE', sizeWidth),
    if (burstWidth > 0) Logic.port('${prefix}BURST', burstWidth),
    if (qosWidth > 0) Logic.port('${prefix}QOS', qosWidth),
  ], [
    PairDirection.fromProvider,
  ]);
}