mirror of
https://github.com/zeldaret/oot.git
synced 2025-05-11 11:33:48 +00:00
* Match the remaining GC retail versions
* Fix BSS ordering for existing versions
* Disable clang-format for #pragma increment_block_number
* sramResetCode -> sSramResetCode
* Replace 0xFF3F with or-ing all buttons together
* Revert "Disable clang-format for #pragma increment_block_number"
This reverts commit 406b6d26c9
.
---------
Co-authored-by: Dragorn421 <Dragorn421@users.noreply.github.com>
96 lines
3.5 KiB
C
96 lines
3.5 KiB
C
#include "global.h"
|
|
#include "terminal.h"
|
|
|
|
#pragma increment_block_number "gc-eu:64 gc-eu-mq:64 gc-jp:64 gc-jp-ce:64 gc-jp-mq:64 gc-us:64 gc-us-mq:64"
|
|
|
|
OSThread sMainThread;
|
|
STACK(sMainStack, 0x900);
|
|
StackEntry sMainStackInfo;
|
|
OSMesg sPiMgrCmdBuff[50];
|
|
OSMesgQueue gPiMgrCmdQueue;
|
|
OSViMode gViConfigMode;
|
|
u8 gViConfigModeType;
|
|
|
|
s8 D_80009430 = 1;
|
|
vu8 gViConfigBlack = true;
|
|
u8 gViConfigAdditionalScanLines = 0;
|
|
u32 gViConfigFeatures = OS_VI_DITHER_FILTER_ON | OS_VI_GAMMA_OFF;
|
|
f32 gViConfigXScale = 1.0;
|
|
f32 gViConfigYScale = 1.0;
|
|
|
|
void Main_ThreadEntry(void* arg) {
|
|
OSTime time;
|
|
|
|
PRINTF("mainx 実行開始\n");
|
|
DmaMgr_Init();
|
|
PRINTF("codeセグメントロード中...");
|
|
time = osGetTime();
|
|
DMA_REQUEST_SYNC(_codeSegmentStart, (uintptr_t)_codeSegmentRomStart, _codeSegmentRomEnd - _codeSegmentRomStart,
|
|
"../idle.c", 238);
|
|
time -= osGetTime();
|
|
PRINTF("\rcodeセグメントロード中...完了\n");
|
|
PRINTF("転送時間 %6.3f\n");
|
|
bzero(_codeSegmentBssStart, _codeSegmentBssEnd - _codeSegmentBssStart);
|
|
PRINTF("codeセグメントBSSクリア完了\n");
|
|
Main(arg);
|
|
PRINTF("mainx 実行終了\n");
|
|
}
|
|
|
|
void Idle_ThreadEntry(void* arg) {
|
|
PRINTF("アイドルスレッド(idleproc)実行開始\n");
|
|
PRINTF("作製者 : %s\n", gBuildTeam);
|
|
PRINTF("作成日時 : %s\n", gBuildDate);
|
|
PRINTF("MAKEOPTION: %s\n", gBuildMakeOption);
|
|
PRINTF(VT_FGCOL(GREEN));
|
|
PRINTF("RAMサイズは %d キロバイトです(osMemSize/osGetMemSize)\n", (s32)osMemSize / 1024);
|
|
PRINTF("_bootSegmentEnd(%08x) 以降のRAM領域はクリアされました(boot)\n", _bootSegmentEnd);
|
|
PRINTF("Zバッファのサイズは %d キロバイトです\n", 0x96);
|
|
PRINTF("ダイナミックバッファのサイズは %d キロバイトです\n", 0x92);
|
|
PRINTF("FIFOバッファのサイズは %d キロバイトです\n", 0x60);
|
|
PRINTF("YIELDバッファのサイズは %d キロバイトです\n", 3);
|
|
PRINTF("オーディオヒープのサイズは %d キロバイトです\n",
|
|
((intptr_t)&gAudioHeap[ARRAY_COUNT(gAudioHeap)] - (intptr_t)gAudioHeap) / 1024);
|
|
PRINTF(VT_RST);
|
|
|
|
osCreateViManager(OS_PRIORITY_VIMGR);
|
|
|
|
gViConfigFeatures = OS_VI_GAMMA_OFF | OS_VI_DITHER_FILTER_ON;
|
|
gViConfigXScale = 1.0f;
|
|
gViConfigYScale = 1.0f;
|
|
|
|
switch (osTvType) {
|
|
#if !OOT_DEBUG
|
|
case OS_TV_PAL:
|
|
#endif
|
|
case OS_TV_NTSC:
|
|
gViConfigModeType = OS_VI_NTSC_LAN1;
|
|
gViConfigMode = osViModeNtscLan1;
|
|
break;
|
|
|
|
case OS_TV_MPAL:
|
|
gViConfigModeType = OS_VI_MPAL_LAN1;
|
|
gViConfigMode = osViModeMpalLan1;
|
|
break;
|
|
|
|
#if OOT_DEBUG
|
|
case OS_TV_PAL:
|
|
gViConfigModeType = OS_VI_FPAL_LAN1;
|
|
gViConfigMode = osViModeFpalLan1;
|
|
gViConfigYScale = 0.833f;
|
|
break;
|
|
#endif
|
|
}
|
|
|
|
D_80009430 = 1;
|
|
osViSetMode(&gViConfigMode);
|
|
ViConfig_UpdateVi(true);
|
|
osViBlack(true);
|
|
osViSwapBuffer((void*)0x803DA80); //! @bug Invalid vram address (probably intended to be 0x803DA800)
|
|
osCreatePiManager(OS_PRIORITY_PIMGR, &gPiMgrCmdQueue, sPiMgrCmdBuff, ARRAY_COUNT(sPiMgrCmdBuff));
|
|
StackCheck_Init(&sMainStackInfo, sMainStack, STACK_TOP(sMainStack), 0, 0x400, "main");
|
|
osCreateThread(&sMainThread, THREAD_ID_MAIN, Main_ThreadEntry, arg, STACK_TOP(sMainStack), THREAD_PRI_MAIN_INIT);
|
|
osStartThread(&sMainThread);
|
|
osSetThreadPri(NULL, OS_PRIORITY_IDLE);
|
|
|
|
for (;;) {}
|
|
}
|