Add a few files in boot that have matching .rodata

This commit is contained in:
rozlette
2020-01-16 16:02:37 -06:00
parent 11c9e03655
commit 60a7168cea
5 changed files with 20 additions and 26 deletions
+3 -3
View File
@@ -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 -2
View File
@@ -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);
}