Axi5MainBChannelAgent constructor

Axi5MainBChannelAgent({
  1. required Axi5SystemInterface sys,
  2. required Axi5BChannelInterface b,
  3. required Component parent,
  4. String name = 'axi5MainBChannelAgent',
  5. bool useCredit = false,
  6. num readyFrequency = 1.0,
})

Constructs a new Axi5MainBChannelAgent.

Implementation

Axi5MainBChannelAgent({
  required this.sys,
  required this.b,
  required Component parent,
  String name = 'axi5MainBChannelAgent',
  this.useCredit = false,
  this.readyFrequency = 1.0,
}) : super(name, parent) {
  monitor = Axi5BChannelMonitor(sys: sys, b: b, parent: parent);

  if (useCredit) {
  } else {
    readyDriver = Axi5ReadyDriver(
        parent: parent, sys: sys, trans: b, readyFrequency: readyFrequency);
  }
}