Axi5MainCrChannelAgent constructor
- required Axi5SystemInterface sys,
- required Axi5CrChannelInterface cr,
- required Component parent,
- String name = 'axi5MainCrChannelAgent',
- int? timeoutCycles,
- int? dropDelayCycles,
Constructs a new Axi5MainCrChannelAgent.
Implementation
Axi5MainCrChannelAgent({
required this.sys,
required this.cr,
required Component parent,
String name = 'axi5MainCrChannelAgent',
this.timeoutCycles,
this.dropDelayCycles,
}) : super(name, parent) {
sequencer =
Sequencer<Axi5CrChannelPacket>('axi5MainCrChannelAgentSequencer', this);
driver = Axi5CrChannelDriver(
parent: this,
sys: sys,
cr: cr,
sequencer: sequencer,
timeoutCycles: timeoutCycles,
dropDelayCycles: dropDelayCycles,
);
}