diff options
| author | KuroiIeWa5Da <tyuki@adu.me> | 2012-01-21 05:02:39 -0600 |
|---|---|---|
| committer | KuroiIeWa5Da <tyuki@adu.me> | 2012-01-21 05:02:39 -0600 |
| commit | 7f658208655641a0de89ceb70ead90f2b3c95326 (patch) | |
| tree | 0d0de9f6dfebc6c4e383edb6bcca21e9e299ef69 /music | |
| parent | merge from iimarckus (diff) | |
| download | pokeyellow-7f658208655641a0de89ceb70ead90f2b3c95326.tar.gz pokeyellow-7f658208655641a0de89ceb70ead90f2b3c95326.tar.xz pokeyellow-7f658208655641a0de89ceb70ead90f2b3c95326.zip | |
Disassembled Music Data for PokeHealed Chnl2, cleaned up music data a bit
hg-commit-id: 2967569eba4d
Diffstat (limited to 'music')
| -rw-r--r-- | music/music.asm | 40 |
1 files changed, 31 insertions, 9 deletions
diff --git a/music/music.asm b/music/music.asm index 81ee5836..5b004ba7 100644 --- a/music/music.asm +++ b/music/music.asm @@ -6,16 +6,16 @@ INCBIN "baserom.gbc",$82FD,$9ba3 - $82FD ;Pokemon Healed Music
PkmnHealed_md_1: ;9BA3 - 9BC3
-;INCBIN "baserom.gbc",$9ba3,$9bc4 - $9ba3
;Setup
- mus_tempo $0, $90
- mus_volume $77
- mus_duty $2
- db $E8
- mus_vel $8, $1
+ mus_tempo 0, 144
+ mus_volume 119
+ mus_duty duty50
+ db $E8 ;??
+ mus_vel 8, 1
-;Song
+;Music
+ ;Piece 1
mus_note noteRst, note8
db $EB, $00
mus_note noteE, note2_4
@@ -33,10 +33,32 @@ PkmnHealed_md_1: ;9BA3 - 9BC3 db $EB, $00
mus_note noteE, note2_4
mus_note noteB, note4
- mus_end
+ mus_end ;End
PkmnHealed_md_2: ;9BC4 - 9BD1
-INCBIN "baserom.gbc",$9bc4,$9bd2 - $9bc4
+;Setup
+ mus_duty duty50
+
+;Music
+ ;Octave Switch
+ db dNormSpd
+ mus_note noteRst, note4
+ db oct3
+
+ ;Piece 1
+ mus_note noteB, note4
+ mus_note noteB, note4
+ mus_note noteB, note8
+ mus_note noteG#, note8
+
+ ;Octave Switch
+ db dNormSpd
+ mus_note noteRst, note4_16
+ db oct4
+
+ ;Piece 2
+ mus_note noteE, note2
+ mus_end ;End
PkmnHealed_md_3: ;9BD2 - 9BDD
INCBIN "baserom.gbc",$9bd2,$9bde - $9bd2
|
