2022-05-03 23:43:09 +01:00
|
|
|
.include "macro.inc"
|
|
|
|
|
2024-07-27 21:24:13 -07:00
|
|
|
/* 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 */
|
2022-05-03 23:43:09 +01:00
|
|
|
|
|
|
|
.section .rodata
|
|
|
|
|
|
|
|
.balign 16
|
|
|
|
|
|
|
|
glabel gSoundFontTable
|
2024-07-27 21:24:13 -07:00
|
|
|
.incbin "incbin/gSoundFontTable"
|
2022-05-03 23:43:09 +01:00
|
|
|
|
|
|
|
glabel gSequenceFontTable
|
2024-07-27 21:24:13 -07:00
|
|
|
.incbin "incbin/gSequenceFontTable"
|
2022-05-03 23:43:09 +01:00
|
|
|
|
|
|
|
glabel gSequenceTable
|
2024-07-27 21:24:13 -07:00
|
|
|
.incbin "incbin/gSequenceTable"
|
2022-05-03 23:43:09 +01:00
|
|
|
|
|
|
|
glabel gSampleBankTable
|
2024-07-27 21:24:13 -07:00
|
|
|
.incbin "incbin/gSampleBankTable"
|