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
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