Axi5SubordinateWChannelAgent constructor
- required Axi5SystemInterface sys,
- required Axi5WChannelInterface w,
- required Component parent,
- String name = 'axi5SubordinateWChannelAgent',
- bool useCredit = false,
- 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);
}
}