Axi5SubordinateWChannelAgent constructor

Axi5SubordinateWChannelAgent({
  1. required Axi5SystemInterface sys,
  2. required Axi5WChannelInterface w,
  3. required Component parent,
  4. String name = 'axi5SubordinateWChannelAgent',
  5. bool useCredit = false,
  6. num readyFrequency = 1.0,
})

Constructs a new Axi5SubordinateWChannelAgent.

Implementation

Axi5SubordinateWChannelAgent({
  required this.sys,
  required this.w,
  required Component parent,
  String name = 'axi5SubordinateWChannelAgent',
  this.useCredit = false,
  this.readyFrequency = 1.0,
}) : super(name, parent) {
  monitor = Axi5WChannelMonitor(sys: sys, w: w, parent: parent);

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