Axi5SubordinateAwChannelAgent constructor
- required Axi5SystemInterface sys,
- required Axi5AwChannelInterface aw,
- required Component parent,
- String name = 'axi5SubordinateAwChannelAgent',
- bool useCredit = false,
- num readyFrequency = 1.0,
Constructs a new Axi5SubordinateAwChannelAgent.
Implementation
Axi5SubordinateAwChannelAgent({
required this.sys,
required this.aw,
required Component parent,
String name = 'axi5SubordinateAwChannelAgent',
this.useCredit = false,
this.readyFrequency = 1.0,
}) : super(name, parent) {
monitor = Axi5AwChannelMonitor(sys: sys, aw: aw, parent: parent);
if (useCredit) {
} else {
readyDriver = Axi5ReadyDriver(
parent: parent, sys: sys, trans: aw, readyFrequency: readyFrequency);
}
}