Axi5MainAwChannelAgent constructor
- required Axi5SystemInterface sys,
- required Axi5AwChannelInterface aw,
- required Component parent,
- String name = 'axi5MainAwChannelAgent',
- int? timeoutCycles,
- int? dropDelayCycles,
Constructs a new Axi5MainAwChannelAgent.
Implementation
Axi5MainAwChannelAgent({
required this.sys,
required this.aw,
required Component parent,
String name = 'axi5MainAwChannelAgent',
this.timeoutCycles,
this.dropDelayCycles,
}) : super(name, parent) {
sequencer =
Sequencer<Axi5AwChannelPacket>('axi5MainAwChannelAgentSequencer', this);
driver = Axi5AwChannelDriver(
parent: this,
sys: sys,
aw: aw,
sequencer: sequencer,
timeoutCycles: timeoutCycles,
dropDelayCycles: dropDelayCycles,
);
}