Axi4DataChannelMonitor constructor
- required Axi4SystemInterface sIntf,
- required Axi4DataChannelInterface rIntf,
- required Component parent,
- String name = 'axi4DataChannelMonitor',
Creates a new Axi4DataChannelMonitor on rIntf.
Implementation
Axi4DataChannelMonitor(
{required this.sIntf,
required this.rIntf,
required Component parent,
String name = 'axi4DataChannelMonitor'})
: super(name, parent) {
isWr = rIntf is Axi4BaseWChannelInterface;
isRd = rIntf is Axi4BaseRChannelInterface;
}