mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-04 15:04:31 +00: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:
parent
f5fd8daffb
commit
6bc6cedaf8
8 changed files with 59 additions and 13 deletions
|
@ -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**);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue