diff options
| author | cadmic <cadmic24@gmail.com> | 2024-09-07 05:10:52 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-07 08:10:52 -0400 |
| commit | a30f130eb9e48d55d8d7c935fb708af1156fee42 (patch) | |
| tree | 84a36889612614e334e2e9c995f825acd5a206e8 /data | |
| parent | e19ec02917672dd3167b4bbd5845624ea011c2e9 (diff) | |
Fix some boot and code data (#2155)
Diffstat (limited to 'data')
| -rw-r--r-- | data/rsp.rodata.s | 2 | ||||
| -rw-r--r-- | data/rsp.text.s | 6 | ||||
| -rw-r--r-- | data/unk_80009410.data.s | 6 |
3 files changed, 14 insertions, 0 deletions
diff --git a/data/rsp.rodata.s b/data/rsp.rodata.s index bdb9fe991..6688f7c62 100644 --- a/data/rsp.rodata.s +++ b/data/rsp.rodata.s @@ -13,9 +13,11 @@ glabel aspMainDataStart .incbin "incbin/aspMainData" glabel aspMainDataEnd +#if !PLATFORM_N64 glabel gspF3DZEX2_NoN_PosLight_fifoTextStart .incbin "incbin/gspF3DZEX2_NoN_PosLight_fifoText" glabel gspF3DZEX2_NoN_PosLight_fifoTextEnd +#endif glabel gspF3DZEX2_NoN_PosLight_fifoDataStart .incbin "incbin/gspF3DZEX2_NoN_PosLight_fifoData" diff --git a/data/rsp.text.s b/data/rsp.text.s index fcf48a251..a40252853 100644 --- a/data/rsp.text.s +++ b/data/rsp.text.s @@ -13,6 +13,12 @@ glabel aspMainTextStart .incbin "incbin/aspMainText" glabel aspMainTextEnd +#if PLATFORM_N64 +glabel gspF3DZEX2_NoN_PosLight_fifoTextStart + .incbin "incbin/gspF3DZEX2_NoN_PosLight_fifoText" +glabel gspF3DZEX2_NoN_PosLight_fifoTextEnd +#endif + glabel gspS2DEX2d_fifoTextStart .incbin "incbin/gspS2DEX2d_fifoText" glabel gspS2DEX2d_fifoTextEnd diff --git a/data/unk_80009410.data.s b/data/unk_80009410.data.s index 8ff273e22..175b179a5 100644 --- a/data/unk_80009410.data.s +++ b/data/unk_80009410.data.s @@ -13,9 +13,15 @@ glabel D_80009410 .word osStopThread .word __osSetHWIntrRoutine +#if PLATFORM_N64 + .word osEPiWriteIo + .word osEPiReadIo +#endif .word __osSetFpcCsr .word __osGetFpcCsr .word __osGetHWIntrRoutine .word __osSetHWIntrRoutine .word osViGetNextFramebuffer +#if !PLATFORM_N64 .word bcmp +#endif |
