MemL[] property
Previous  Top  Next

   
property    MemL[PhysicalMemoryBase:Longword; Index:Longword]  : Longword; read, write;  




Value of the MemL array is of type Longword. This property allows read/write one 32-bit double word from the array type Longword based at given physical address:

  Result := MemL[PhysicalMemoryBase, Index];

or

MemL[PhysicalMemoryBase,Index] := SomeLongWordValue;  

The "Index" value should begin from the "0" value.