mirror of
https://github.com/zeldaret/oot
synced 2026-08-18 13:43:14 -04:00
[ntsc-1.2] Match boot_main.c, logutils.c, z_locale.c (text) (#2053)
* Match boot_main.c, logutils.c, z_locale.c (text) * review * review 2
This commit is contained in:
@@ -5,4 +5,6 @@
|
||||
|
||||
extern u32 B_80008EE0;
|
||||
|
||||
void func_80001720(void);
|
||||
|
||||
#endif
|
||||
|
||||
+9
-1
@@ -4,7 +4,6 @@
|
||||
#include "z64.h"
|
||||
#include "macros.h"
|
||||
|
||||
void cleararena(void);
|
||||
void bootproc(void);
|
||||
void Main_ThreadEntry(void* arg);
|
||||
void Idle_ThreadEntry(void* arg);
|
||||
@@ -47,6 +46,15 @@ s32 osSendMesg(OSMesgQueue* mq, OSMesg msg, s32 flag);
|
||||
void osStopThread(OSThread* thread);
|
||||
void osViExtendVStart(u32 value);
|
||||
s32 osRecvMesg(OSMesgQueue* mq, OSMesg* msg, s32 flag);
|
||||
#if PLATFORM_N64
|
||||
void osInitialize(void);
|
||||
#else
|
||||
#define osInitialize() \
|
||||
{ \
|
||||
__osInitialize_common(); \
|
||||
__osInitialize_autodetect(); \
|
||||
}
|
||||
#endif
|
||||
void __osInitialize_common(void);
|
||||
void __osInitialize_autodetect(void);
|
||||
void __osEnqueueAndYield(OSThread**);
|
||||
|
||||
Reference in New Issue
Block a user