Axi5MainCrChannelAgent constructor

Axi5MainCrChannelAgent({
  1. required Axi5SystemInterface sys,
  2. required Axi5CrChannelInterface cr,
  3. required Component parent,
  4. String name = 'axi5MainCrChannelAgent',
  5. int? timeoutCycles,
  6. int? dropDelayCycles,
})

Constructs a new Axi5MainCrChannelAgent.

Implementation

Axi5MainCrChannelAgent({
  required this.sys,
  required this.cr,
  required Component parent,
  String name = 'axi5MainCrChannelAgent',
  this.timeoutCycles,
  this.dropDelayCycles,
}) : super(name, parent) {
  sequencer =
      Sequencer<Axi5CrChannelPacket>('axi5MainCrChannelAgentSequencer', this);

  driver = Axi5CrChannelDriver(
    parent: this,
    sys: sys,
    cr: cr,
    sequencer: sequencer,
    timeoutCycles: timeoutCycles,
    dropDelayCycles: dropDelayCycles,
  );
}