diff options
author | Bryan Bishop <kanzure@gmail.com> | 2014-05-19 12:21:26 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2014-05-19 12:21:26 -0500 |
commit | 1098c2352e966ce180dc6d224cfe33f946b76d9e (patch) | |
tree | 140ef1db68794415206ecdf04f7e83713517d7f9 /main.asm | |
parent | 363600f8b4db1c02238e72cff0411f58e534e15c (diff) | |
parent | 67b3a7fc57297d403c71a0882d3336c5a6a02c4f (diff) |
Merge pull request #252 from yenatch/master
Add remaining battle animation data.
Diffstat (limited to 'main.asm')
-rw-r--r-- | main.asm | 27 |
1 files changed, 4 insertions, 23 deletions
@@ -7722,11 +7722,7 @@ Function84ef: ; 84ef SineWave: ; 850b ; A $20-word table representing a sine wave. ; 90 degrees is index $10 at a base amplitude of $100. -x set 0 - rept $20 - dw (sin(x) + (sin(x) & $ff)) >> 8 ; round up -x set x + $100 * $40000 - endr + sine_wave $100 ; 854b @@ -52516,12 +52512,7 @@ Function49b52: ; 49b52 (12:5b52) ; 49b6e (12:5b6e) Unknown_49b6e: ; 49b6e -; Yet another sine wave. -x set 0 - rept $20 - dw (sin(x) + (sin(x) & $ff)) >> 8 ; round up -x set x + $100 * $40000 - endr + sine_wave $100 ; 49bae Function49bae: ; 49bae @@ -75538,12 +75529,7 @@ Function8c70c: ; 8c70c (23:470c) ; 8c728 (23:4728) Unknown_8c728: ; 8c728 -; Another sine wave? -x set 0 - rept $20 - dw (sin(x) + (sin(x) & $ff)) >> 8 ; round up -x set x + $100 * $40000 - endr + sine_wave $100 ; 8c768 ; no known jump sources @@ -79367,12 +79353,7 @@ Function8e741: ; 8e741 ; 8e75d Unknown_8e75d: ; 8e75d -; A sine wave. -x set 0 - rept $20 - dw (sin(x) + (sin(x) & $ff)) >> 8 ; round up -x set x + $100 * $40000 - endr + sine_wave $100 Function8e79d: ; 8e79d |