This function copies the memory.
[Specification format]
debugger.Memory.Copy(address1, address2, address3)
|
[Argument(s)]
|
|
address1
|
Specify the start address to copy from.
|
address2
|
Specify the end address to copy from.
|
address3
|
Specify the address to copy to.
|
[Return value]
If the memory was copied successfully: True
If there was an error when copying the memory: False
[Detailed description]
- | This function copies the memory from address1 to address2 into address3. |
[Example of use]
>>>debugger.Memory.Copy(0x1000, 0x2000, 0x3000)
True
>>>
|