[n64-jp-1.1] __osMalloc.c matched (#1845)

* match osmalloc

* some names

* format

* Breakup osFree checks and move strings around

* misc changes
This commit is contained in:
Anghelo Carvajal
2026-04-20 13:32:24 -04:00
committed by GitHub
parent ffc67c3e0a
commit fa85e7cda5
4 changed files with 329 additions and 42 deletions
+8
View File
@@ -5,7 +5,15 @@
void GameAlloc_Log(GameAlloc* this) {
GameAllocEntry* iter = this->base.next;
#if MM_VERSION <= N64_JP_1_1
(void)"this = %08x\n";
#endif
while (iter != &this->base) {
#if MM_VERSION <= N64_JP_1_1
(void)"ptr = %08x size = %d\n";
#endif
iter = iter->next;
}
}