Axi5MainAcChannelAgent constructor

Axi5MainAcChannelAgent({
  1. required Axi5SystemInterface sys,
  2. required Axi5AcChannelInterface ac,
  3. required Component parent,
  4. String name = 'axi5MainAcChannelAgent',
  5. bool useCredit = false,
  6. num readyFrequency = 1.0,
})

Constructs a new Axi5MainAcChannelAgent.

Implementation

Axi5MainAcChannelAgent({
  required this.sys,
  required this.ac,
  required Component parent,
  String name = 'axi5MainAcChannelAgent',
  this.useCredit = false,
  this.readyFrequency = 1.0,
}) : super(name, parent) {
  monitor = Axi5AcChannelMonitor(sys: sys, ac: ac, parent: parent);

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