Axi4SubordinateResponseChannelAgent constructor
- required Axi4SystemInterface sIntf,
- required Axi4BaseBChannelInterface rIntf,
- required Component parent,
- String name = 'axi4SubordinateResponseChannelAgent',
- int timeoutCycles = 500,
- int dropDelayCycles = 30,
Constructs a new Axi4SubordinateResponseChannelAgent.
Implementation
Axi4SubordinateResponseChannelAgent({
required this.sIntf,
required this.rIntf,
required Component parent,
String name = 'axi4SubordinateResponseChannelAgent',
this.timeoutCycles = 500,
this.dropDelayCycles = 30,
}) : super(name, parent) {
sequencer = Sequencer<Axi4ResponsePacket>(
'axi4SubordinateResponseChannelSequencer', this);
driver = Axi4ResponseChannelDriver(
parent: this,
sIntf: sIntf,
rIntf: rIntf,
sequencer: sequencer,
timeoutCycles: timeoutCycles,
dropDelayCycles: dropDelayCycles,
);
}