mirror of
https://github.com/zeldaret/mm.git
synced 2026-06-25 17:24:27 -04:00
Add a few files in boot that have matching .rodata
This commit is contained in:
@@ -6,9 +6,9 @@ void CIC6105_Nop80081820(void) {}
|
||||
void CIC6105_Nop80081828(void) {}
|
||||
|
||||
void CIC6105_PrintRomInfo(void) {
|
||||
FaultDrawer_DrawText(80, 200, D_80098280, (UNK_PTR)(*(u32*)0xA4040010));
|
||||
FaultDrawer_DrawText(40, 184, D_80098290, &D_800994D0);
|
||||
FaultDrawer_DrawText(56, 192, D_800982A4, &D_800994DC);
|
||||
FaultDrawer_DrawText(80, 200, "SP_STATUS %08x", (UNK_PTR)(*(u32*)0xA4040010));
|
||||
FaultDrawer_DrawText(40, 184, "ROM_F [Creator:%s]", &D_800994D0);
|
||||
FaultDrawer_DrawText(56, 192, "[Date:%s]", &D_800994DC);
|
||||
}
|
||||
|
||||
void CIC6105_AddRomInfoFaultPage(void) {
|
||||
|
||||
@@ -2,13 +2,13 @@
|
||||
#include <global.h>
|
||||
|
||||
void start(void) {
|
||||
StackCheck_Init(&bootStackEntry, (u32)bootStack, (u32)&bootStack[1024], 0, -1, bootThreadName);
|
||||
StackCheck_Init(&bootStackEntry, (u32)bootStack, (u32)&bootStack[1024], 0, -1, "boot");
|
||||
osMemSize = func_8008D350();
|
||||
func_800818F4();
|
||||
osInitialize();
|
||||
osUnmapTLBAll();
|
||||
D_80096B40 = func_80092920();
|
||||
StackCheck_Init(&idleStackEntry, (u32)idleStack, (u32)&idleStack[1024], 0, 256, idleThreadName);
|
||||
StackCheck_Init(&idleStackEntry, (u32)idleStack, (u32)&idleStack[1024], 0, 256, "idle");
|
||||
osCreateThread(&idleOSThread, 1, (osCreateThread_func)Idle_ThreadEntry, 0, &idleStack[1024], 12);
|
||||
osStartThread(&idleOSThread);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user