mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-27 03:42:19 -05:00
39cc86c260
subrepo: subdir: "soh" merged: "ba904bbd0" upstream: origin: "https://github.com/HarbourMasters/soh.git" branch: "master" commit: "ba904bbd0" git-subrepo: version: "0.4.1" origin: "???" commit: "???"
31 lines
916 B
C
31 lines
916 B
C
#include "global.h"
|
|
|
|
StackEntry sBootThreadInfo;
|
|
OSThread sIdleThread;
|
|
u8 sIdleThreadStack[0x400];
|
|
StackEntry sIdleThreadInfo;
|
|
u8 sBootThreadStack[0x400];
|
|
|
|
void cleararena(void) {
|
|
//bzero(_dmadataSegmentStart, osMemSize - OS_K0_TO_PHYSICAL(_dmadataSegmentStart));
|
|
}
|
|
|
|
void bootproc(void) {
|
|
StackCheck_Init(&sBootThreadInfo, sBootThreadStack, sBootThreadStack + sizeof(sBootThreadStack), 0, -1, "boot");
|
|
|
|
osMemSize = osGetMemSize();
|
|
cleararena();
|
|
__osInitialize_common();
|
|
__osInitialize_autodetect();
|
|
|
|
gCartHandle = osCartRomInit();
|
|
osDriveRomInit();
|
|
isPrintfInit();
|
|
Locale_Init();
|
|
|
|
StackCheck_Init(&sIdleThreadInfo, sIdleThreadStack, sIdleThreadStack + sizeof(sIdleThreadStack), 0, 256, "idle");
|
|
osCreateThread(&sIdleThread, 1, Idle_ThreadEntry, NULL, sIdleThreadStack + sizeof(sIdleThreadStack),
|
|
Z_PRIORITY_MAIN);
|
|
osStartThread(&sIdleThread);
|
|
}
|