mirror of
https://github.com/zeldaret/oot
synced 2026-05-23 15:01:47 -04:00
0d4dbb61a0
* Fix F3DEX2 ucode name on N64 versions (not PosLight) * put the not-PosLight / PosLight differences under F3DEX_GBI_PL * revert bss changes
37 lines
956 B
ArmAsm
37 lines
956 B
ArmAsm
.include "macro.inc"
|
|
|
|
/* assembler directives */
|
|
.set noat /* allow manual use of $at */
|
|
.set noreorder /* don't insert nops after branches */
|
|
.set gp=64 /* allow use of 64-bit general purpose registers */
|
|
|
|
.section .rodata
|
|
|
|
.balign 16
|
|
|
|
glabel aspMainDataStart
|
|
.incbin "incbin/aspMainData"
|
|
glabel aspMainDataEnd
|
|
|
|
#ifndef F3DEX_GBI_PL
|
|
glabel gspF3DZEX2_NoN_fifoDataStart
|
|
.incbin "incbin/gspF3DZEX2_NoN_fifoData"
|
|
glabel gspF3DZEX2_NoN_fifoDataEnd
|
|
#else
|
|
glabel gspF3DZEX2_NoN_PosLight_fifoTextStart
|
|
.incbin "incbin/gspF3DZEX2_NoN_PosLight_fifoText"
|
|
glabel gspF3DZEX2_NoN_PosLight_fifoTextEnd
|
|
|
|
glabel gspF3DZEX2_NoN_PosLight_fifoDataStart
|
|
.incbin "incbin/gspF3DZEX2_NoN_PosLight_fifoData"
|
|
glabel gspF3DZEX2_NoN_PosLight_fifoDataEnd
|
|
#endif
|
|
|
|
glabel gspS2DEX2d_fifoDataStart
|
|
.incbin "incbin/gspS2DEX2d_fifoData"
|
|
glabel gspS2DEX2d_fifoDataEnd
|
|
|
|
glabel njpgdspMainDataStart
|
|
.incbin "incbin/njpgdspMainData"
|
|
glabel njpgdspMainDataEnd
|