2022-05-03 22:43:09 +00:00
|
|
|
.include "macro.inc"
|
|
|
|
|
2024-07-28 04:24:13 +00: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 22:43:09 +00:00
|
|
|
|
|
|
|
.section .rodata
|
|
|
|
|
|
|
|
.balign 16
|
|
|
|
|
|
|
|
glabel gSoundFontTable
|
2024-07-28 04:24:13 +00:00
|
|
|
.incbin "incbin/gSoundFontTable"
|
2022-05-03 22:43:09 +00:00
|
|
|
|
|
|
|
glabel gSequenceFontTable
|
2024-07-28 04:24:13 +00:00
|
|
|
.incbin "incbin/gSequenceFontTable"
|
2022-05-03 22:43:09 +00:00
|
|
|
|
|
|
|
glabel gSequenceTable
|
2024-07-28 04:24:13 +00:00
|
|
|
.incbin "incbin/gSequenceTable"
|