pokegold-spaceworld/audio.asm
Narishma-gb e88fe24e15
Use the same Makefile build system as Gen 1+2 repos (#163)
This uses catch-all files like main.asm to reduce the total quantity and size of
build objects (from 1.1 GB to 70 MB).

---------

Co-authored-by: Rangi <35663410+Rangi42@users.noreply.github.com>
2026-07-05 15:36:09 -04:00

39 lines
815 B
NASM

SECTION "Audio", ROMX
INCLUDE "audio/engine.asm"
INCLUDE "audio/songs/none.asm"
INCLUDE "audio/cry_pointers.asm"
INCLUDE "audio/sfx_pointers.asm"
SECTION "Songs 1", ROMX
INCLUDE "audio/songs/nidorinointro.asm"
INCLUDE "audio/songs/viridiancity.asm"
INCLUDE "audio/songs/route1.asm"
INCLUDE "audio/songs/oakintro.asm"
INCLUDE "audio/songs/leaderbattle.asm"
INCLUDE "audio/songs/trainerbattle.asm"
INCLUDE "audio/songs/heal.asm"
INCLUDE "audio/songs/bicycle.asm"
INCLUDE "audio/songs/spottedrocket.asm"
INCLUDE "audio/songs/victorytrainer.asm"
INCLUDE "audio/songs/evolution.asm"
SECTION "Sound Effects", ROMX
INCLUDE "audio/move_sfx_old.asm"
INCLUDE "audio/sfx.asm"
SECTION "Cries", ROMX
INCLUDE "data/pokemon/cries.asm"
INCLUDE "audio/cries.asm"
SECTION "Songs 2", ROMX
INCLUDE "audio/songs/title.asm"