ProgramMemory<OT extends ProgramOperation> constructor
Null safety
- Memory<
OT> memory, - OperationMap<
OT> layout, - int returnStackSize,
- ProgramOperation _rtn
Implementation
ProgramMemory(
this.memory, OperationMap<OT> layout, int returnStackSize, this._rtn)
: _returnStack = List.filled(returnStackSize, 0),
_operationTable = layout._operationTable,
_argValues = layout._argValues,
_extendedOpcode = layout._extendedOpcode;