Axi5MainBChannelAgent constructor
- required Axi5SystemInterface sys,
- required Axi5BChannelInterface b,
- required Component parent,
- String name = 'axi5MainBChannelAgent',
- bool useCredit = false,
- 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);
}
}