Axi4SubordinateReadClusterAgent constructor
- required Axi4SystemInterface sIntf,
- required Axi4BaseArChannelInterface arIntf,
- required Axi4BaseRChannelInterface rIntf,
- required Component parent,
- String name = 'axi4SubordinateReadClusterAgent',
- int timeoutCycles = 500,
- int dropDelayCycles = 30,
- num readyFrequency = 1.0,
Constructs a new Axi4SubordinateReadClusterAgent.
Implementation
Axi4SubordinateReadClusterAgent({
required this.sIntf,
required this.arIntf,
required this.rIntf,
required Component parent,
String name = 'axi4SubordinateReadClusterAgent',
this.timeoutCycles = 500,
this.dropDelayCycles = 30,
this.readyFrequency = 1.0,
}) : super(name, parent) {
reqAgent = Axi4SubordinateRequestChannelAgent(
sIntf: sIntf,
rIntf: arIntf,
parent: parent,
readyFrequency: readyFrequency);
dataAgent = Axi4SubordinateDataChannelAgent(
sIntf: sIntf,
rIntf: rIntf,
parent: parent,
timeoutCycles: timeoutCycles,
dropDelayCycles: dropDelayCycles);
}