[Implemented] MoveMemory/FillMemory
Posted: Thu Jun 03, 2004 9:42 pm
The MoveMemory-Command could come very handy if you try to move a memory block to a destination that is part of the memory block itself (i.e. it's overlapping). Source->Buffer->Dest instead of Source->Dest
FillMemory should fill a specified length of Bytes with a given number.
Code: Select all
MoveMemory(*a, *a+5, 50) ;shifting 50 Bytes 5 Bytes to the right
Code: Select all
FillMemory(*a, 0, 50) ;Filling 50 zeros into *a