Replace boot_get_mem_size with osGetMemSize

This commit is contained in:
Ryan Dwyer
2025-01-10 10:39:18 +10:00
parent 8319a25c5a
commit 9839a54b55
6 changed files with 21 additions and 26 deletions
+6 -1
View File
@@ -2,8 +2,13 @@
#define _IN_LIB_BOOT_H
#include <ultra64.h>
#if VERSION >= VERSION_NTSC_1_0
extern s32 osGetMemSize(void);
#else
extern u32 osGetMemSize(void);
#endif
void boot(void);
s32 boot_get_mem_size(void);
void *boot_allocate_stack(s32 threadid, s32 size);
void boot_check_stack_overflow(void);