Axi5MainArChannelAgent constructor

Axi5MainArChannelAgent({
  1. required Axi5SystemInterface sys,
  2. required Axi5ArChannelInterface ar,
  3. required Component parent,
  4. String name = 'axi5MainArChannelAgent',
  5. int? timeoutCycles,
  6. int? dropDelayCycles,
})

Constructs a new Axi5MainArChannelAgent.

Implementation

Axi5MainArChannelAgent({
  required this.sys,
  required this.ar,
  required Component parent,
  String name = 'axi5MainArChannelAgent',
  this.timeoutCycles,
  this.dropDelayCycles,
}) : super(name, parent) {
  sequencer =
      Sequencer<Axi5ArChannelPacket>('axi5MainArChannelAgentSequencer', this);

  driver = Axi5ArChannelDriver(
    parent: this,
    sys: sys,
    ar: ar,
    sequencer: sequencer,
    timeoutCycles: timeoutCycles,
    dropDelayCycles: dropDelayCycles,
  );
}