Mem[] Property
Previous  Top  Next

   
property    Mem[PhysicalMemoryBase:Longword; Index:Longword]  : Byte; read, write;  
 


Value of the Mem array is of type Byte. This property allows read/write one byte from the array type Byte based at given physical address:

  Result := Mem[PhysicalMemoryBase, Index];

or

Mem[PhysicalMemoryBase,Index] := SomeByteValue;  

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