For now, the old function still exists as `old_rp`, in order to debug issues with this command.
7 lines
176 B
Python
7 lines
176 B
Python
HEAP_PAGE_ALIGN_LOG = 16
|
|
HEAP_PAGE_ALIGN_MASK = (~(~0 << HEAP_PAGE_ALIGN_LOG))
|
|
HEAP_PAGE_ALIGN = (1 << HEAP_PAGE_ALIGN_LOG)
|
|
HEAP_PAGE_SIZE = HEAP_PAGE_ALIGN
|
|
|
|
IMEMO_MASK = 0x0F
|