This file defines miscellaneous memory functions of PwnOS.
| MiscMemory.asm | This file defines miscellaneous memory functions of PwnOS. |
| Functions | |
| ZeroMemory | This procedure sets a range of memory to all zeros. |
| ZeroMemoryFast | This procedure sets a range of memory to all zeros, given a range aligned to 16 bytes and a size that is a multiple of 64. |
This procedure sets a range of memory to all zeros.
For aligned ranges, consider ZeroMemoryFast.
| Address | virtual address at which to start |
| nBytes | number of bytes to zero |