MemW[] property
Previous
Top
Next
property MemW[PhysicalMemoryBase:Longword; Index:Longword] : Word; read, write;
Value of the MemW array is of type Word. This property allows read/write one 16-bit word from the array type Word based at given physical address:
Result := MemW[PhysicalMemoryBase, Index];
or
MemW[PhysicalMemoryBase,Index] := SomeWordValue;
The "Index" value should begin from the "0" value.