Axi5MainAwChannelAgent constructor

Axi5MainAwChannelAgent({
  1. required Axi5SystemInterface sys,
  2. required Axi5AwChannelInterface aw,
  3. required Component parent,
  4. String name = 'axi5MainAwChannelAgent',
  5. int? timeoutCycles,
  6. int? dropDelayCycles,
})

Constructs a new Axi5MainAwChannelAgent.

Implementation

Axi5MainAwChannelAgent({
  required this.sys,
  required this.aw,
  required Component parent,
  String name = 'axi5MainAwChannelAgent',
  this.timeoutCycles,
  this.dropDelayCycles,
}) : super(name, parent) {
  sequencer =
      Sequencer<Axi5AwChannelPacket>('axi5MainAwChannelAgentSequencer', this);

  driver = Axi5AwChannelDriver(
    parent: this,
    sys: sys,
    aw: aw,
    sequencer: sequencer,
    timeoutCycles: timeoutCycles,
    dropDelayCycles: dropDelayCycles,
  );
}