mirror of https://github.com/zeldaret/oot.git
23 lines
639 B
ArmAsm
23 lines
639 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 gSoundFontTable
|
|
.incbin "baseroms/gc-eu-mq-dbg/baserom-decompressed.z64", 0xBCC270, 0x270
|
|
|
|
glabel gSequenceFontTable
|
|
.incbin "baseroms/gc-eu-mq-dbg/baserom-decompressed.z64", 0xBCC4E0, 0x1C0
|
|
|
|
glabel gSequenceTable
|
|
.incbin "baseroms/gc-eu-mq-dbg/baserom-decompressed.z64", 0xBCC6A0, 0x6F0
|
|
|
|
glabel gSampleBankTable
|
|
.incbin "baseroms/gc-eu-mq-dbg/baserom-decompressed.z64", 0xBCCD90, 0x80
|