Axi5MainRChannelAgent constructor
- required Axi5SystemInterface sys,
- required Axi5RChannelInterface r,
- required Component parent,
- String name = 'axi5MainRChannelAgent',
- bool useCredit = false,
- num readyFrequency = 1.0,
Constructs a new Axi5MainRChannelAgent.
Implementation
Axi5MainRChannelAgent({
required this.sys,
required this.r,
required Component parent,
String name = 'axi5MainRChannelAgent',
this.useCredit = false,
this.readyFrequency = 1.0,
}) : super(name, parent) {
monitor = Axi5RChannelMonitor(sys: sys, r: r, parent: parent);
if (useCredit) {
} else {
readyDriver = Axi5ReadyDriver(
parent: parent, sys: sys, trans: r, readyFrequency: readyFrequency);
}
}