Rename `boot` to `nuBoot`
This commit is contained in:
parent
60f66d3b43
commit
d570045631
|
|
@ -355,12 +355,10 @@ extern const char STR_EMPTY[];
|
|||
extern void AddHeap(void* start, u32 length);
|
||||
extern void __some_logging(const char* format, ...);
|
||||
|
||||
|
||||
extern void nuBoot(void);
|
||||
extern void nuScCreateScheduler(u8 videoMode, u8 numFields);
|
||||
extern void (*D_800E7A18)();
|
||||
|
||||
extern void boot(void);
|
||||
|
||||
extern void obIdle(void*);
|
||||
extern void obMain(void*);
|
||||
|
||||
|
|
|
|||
|
|
@ -686,6 +686,7 @@ __MAIN_START_BUT_STATE = 0x800E8214;
|
|||
__thread_80089358 = 0x80089358;
|
||||
|
||||
nusched = 0x800E917C; // size:0x67A
|
||||
nuBoot = 0x8007F880;
|
||||
nuScCreateScheduler = 0x80088C50; // rom:0x19050
|
||||
nuPiInit = 0x80089F40;
|
||||
|
||||
|
|
@ -981,7 +982,6 @@ obMain = 0x80071EB0;
|
|||
obThreadMain = 0x800AF5F0;
|
||||
obStackMain = 0x800C6D60;
|
||||
|
||||
boot = 0x8007F880;
|
||||
entry = 0x80070C00;
|
||||
|
||||
guRotateRPYF = 0x80092A90;
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
extern u8 obStackMain[];
|
||||
|
||||
void boot(void) {
|
||||
void nuBoot(void) {
|
||||
osInitialize();
|
||||
osCreateThread(&obThreadIdle, 1, obIdle, NULL, obStackIdle, 0xA);
|
||||
osStartThread(&obThreadIdle);
|
||||
|
|
|
|||
Loading…
Reference in New Issue