mirror of
https://github.com/zeldaret/oot
synced 2026-08-11 03:26:20 -04:00
[iQue] Match makerom (#2397)
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
#include "boot.h"
|
||||
|
||||
/* These are only here due to iQue entry.s using ori to load the lower halves of symbols
|
||||
* rather than addiu, so the usual relocation operators %hi() and %lo() can't be used. */
|
||||
|
||||
_bootSegmentBssStart_HI = _bootSegmentBssStart >> 16;
|
||||
|
||||
_bootSegmentBssSize_HI = _bootSegmentBssSize >> 16;
|
||||
|
||||
bootproc_HI = bootproc >> 16;
|
||||
|
||||
BOOT_STACK_TOP = (sBootThreadStack + BOOT_STACK_SIZE);
|
||||
BOOT_STACK_TOP_HI = BOOT_STACK_TOP >> 16;
|
||||
Reference in New Issue
Block a user