Axi5MainAcChannelAgent constructor
- required Axi5SystemInterface sys,
- required Axi5AcChannelInterface ac,
- required Component parent,
- String name = 'axi5MainAcChannelAgent',
- bool useCredit = false,
- 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);
}
}