Axi5MainArChannelAgent constructor
- required Axi5SystemInterface sys,
- required Axi5ArChannelInterface ar,
- required Component parent,
- String name = 'axi5MainArChannelAgent',
- int? timeoutCycles,
- int? dropDelayCycles,
Constructs a new Axi5MainArChannelAgent.
Implementation
Axi5MainArChannelAgent({
required this.sys,
required this.ar,
required Component parent,
String name = 'axi5MainArChannelAgent',
this.timeoutCycles,
this.dropDelayCycles,
}) : super(name, parent) {
sequencer =
Sequencer<Axi5ArChannelPacket>('axi5MainArChannelAgentSequencer', this);
driver = Axi5ArChannelDriver(
parent: this,
sys: sys,
ar: ar,
sequencer: sequencer,
timeoutCycles: timeoutCycles,
dropDelayCycles: dropDelayCycles,
);
}