MiscMemory.asm

This file defines miscellaneous memory functions of PwnOS.

See Also

Authors

  • Neil G.  Dickson
Summary
MiscMemory.asmThis file defines miscellaneous memory functions of PwnOS.
Functions
ZeroMemoryThis procedure sets a range of memory to all zeros.
ZeroMemoryFastThis 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.

Functions

ZeroMemory

This procedure sets a range of memory to all zeros.

For aligned ranges, consider ZeroMemoryFast.

Parameters

Addressvirtual address at which to start
nBytesnumber of bytes to zero

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.

Parameters

Addressvirtual address at which to start
nBytesnumber of bytes to zero
This file defines page-level memory management functions of PwnOS.
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.