GetMemory |
Top |
void GetMemory(void dest[], int n, unsigned long addr, int addr_space); Description To read n-byte memory block from a specified memory area{addr_sp} (parameter addr_space) at a specified address to the array dest. Example char array[20]; GetMemory(array, sizeof(array), 0x20, SubLevel(0, 0)); |