diff options
| author | luckytyphlosion <alan.rj.huang@gmail.com> | 2016-03-19 19:07:55 -0400 |
|---|---|---|
| committer | luckytyphlosion <alan.rj.huang@gmail.com> | 2016-03-19 19:07:55 -0400 |
| commit | 3e6965491f2989912f95e116e138b58044235a30 (patch) | |
| tree | 87c67d17c85dd774bd325cdc4294631498715364 /audio.asm | |
| parent | Document audio functions. (diff) | |
| download | pokeyellow-3e6965491f2989912f95e116e138b58044235a30.tar.gz pokeyellow-3e6965491f2989912f95e116e138b58044235a30.tar.xz pokeyellow-3e6965491f2989912f95e116e138b58044235a30.zip | |
Start working on bank20 audio
Note: Address labels aren't correct.
Diffstat (limited to 'audio.asm')
| -rw-r--r-- | audio.asm | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -2,6 +2,7 @@ AUDIO_1 EQU $2 AUDIO_2 EQU $8 AUDIO_3 EQU $1f +AUDIO_4 EQU $20 PCM_1 EQU $21 PCM_2 EQU $22 @@ -653,7 +654,16 @@ INCLUDE "audio/music/halloffame.asm" INCLUDE "audio/music/credits.asm" INCLUDE "audio/music/yellowintro.asm" +SECTION "Music 4", ROMX, BANK[AUDIO_4] +SFX_Headers_4: ; 80000 (20:4000) + dr $80000,$80f14 +SurfingPikachu1Graphics: INCBIN "gfx/surfing_pikachu_1.t4.2bpp" + +INCLUDE "audio/engine_4.asm" + + dr $82ce8,$84000 + SECTION "Pikachu Cries 1",ROMX,BANK[PCM_1] PikachuCry1:: ; 84000 (21:4000) dw (PikachuCry1_End - PikachuCry1) - 2 ; length of pcm data |
