Axi4MainResponseChannelAgent constructor
- required Axi4SystemInterface sIntf,
- required Axi4BaseBChannelInterface rIntf,
- required Component parent,
- String name = 'axi4MainResponseChannelAgent',
- num readyFrequency = 1.0,
Constructs a new Axi4MainResponseChannelAgent.
Implementation
Axi4MainResponseChannelAgent({
required this.sIntf,
required this.rIntf,
required Component parent,
String name = 'axi4MainResponseChannelAgent',
this.readyFrequency = 1.0,
}) : super(name, parent) {
readyDriver = Axi4ReadyDriver(
parent: this, sys: sIntf, chan: rIntf, readyFrequency: readyFrequency);
monitor =
Axi4ResponseChannelMonitor(sIntf: sIntf, rIntf: rIntf, parent: parent);
}