Axi5SubordinateCrChannelAgent constructor
- required Axi5SystemInterface sys,
- required Axi5CrChannelInterface cr,
- required Component parent,
- String name = 'axi5SubordinateCrChannelAgent',
- bool useCredit = false,
- num readyFrequency = 1.0,
Constructs a new Axi5SubordinateCrChannelAgent.
Implementation
Axi5SubordinateCrChannelAgent({
required this.sys,
required this.cr,
required Component parent,
String name = 'axi5SubordinateCrChannelAgent',
this.useCredit = false,
this.readyFrequency = 1.0,
}) : super(name, parent) {
monitor = Axi5CrChannelMonitor(sys: sys, cr: cr, parent: parent);
if (useCredit) {
} else {
readyDriver = Axi5ReadyDriver(
parent: parent, sys: sys, trans: cr, readyFrequency: readyFrequency);
}
}