Axi5MainWChannelAgent constructor

Axi5MainWChannelAgent({
  1. required Axi5SystemInterface sys,
  2. required Axi5WChannelInterface w,
  3. required Component parent,
  4. String name = 'axi5MainWChannelAgent',
  5. int? timeoutCycles,
  6. int? dropDelayCycles,
})

Constructs a new Axi5MainWChannelAgent.

Implementation

Axi5MainWChannelAgent({
  required this.sys,
  required this.w,
  required Component parent,
  String name = 'axi5MainWChannelAgent',
  this.timeoutCycles,
  this.dropDelayCycles,
}) : super(name, parent) {
  sequencer =
      Sequencer<Axi5WChannelPacket>('axi5MainWChannelAgentSequencer', this);

  driver = Axi5WChannelDriver(
    parent: this,
    sys: sys,
    w: w,
    sequencer: sequencer,
    timeoutCycles: timeoutCycles,
    dropDelayCycles: dropDelayCycles,
  );
}