ApbCompleterAgent constructor
Creates a new model ApbCompleterAgent.
If no storage
is provided, it will use a default SparseMemoryStorage.
Implementation
ApbCompleterAgent(
{required this.intf,
required Component parent,
MemoryStorage? storage,
this.selectIndex = 0,
this.responseDelay,
this.respondWithError,
this.invalidReadDataOnError = true,
this.dropWriteDataOnError = true,
String name = 'apbCompleter'})
: storage = storage ??
SparseMemoryStorage(
addrWidth: intf.addrWidth,
dataWidth: intf.dataWidth,
),
super(name, parent);