diff options
author | yenatch <yenatch@gmail.com> | 2017-12-23 17:14:09 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2017-12-23 17:14:09 -0500 |
commit | c51968f0de6b8420c141dde27339e82a42837c5b (patch) | |
tree | 782f2b25f21adacb48fd516694b8a82864fe0b99 /macros/scripts/gfx_anim.asm | |
parent | c883ab4d34ecb4890010e808d6b6d533f5d8ad56 (diff) | |
parent | 878092004956418bfd77bfdb9fc9dd7f640f80d2 (diff) |
Merge remote-tracking branch 'origin/master' into master
Diffstat (limited to 'macros/scripts/gfx_anim.asm')
-rw-r--r-- | macros/scripts/gfx_anim.asm | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/macros/scripts/gfx_anim.asm b/macros/scripts/gfx_anim.asm new file mode 100644 index 000000000..a3fa710a0 --- /dev/null +++ b/macros/scripts/gfx_anim.asm @@ -0,0 +1,44 @@ +; pic + oam animations + +frame: macro + db \1 +x = \2 +if _NARG > 2 +rept _NARG +- 2 +x = x | (1 << (\3 + 1)) + shift +endr +endc + db x + endm + + enum_start $fc + + enum delanim_command ; $fc +delanim: macro ; used for oam + db delanim_command + endm + + enum dorepeat_command ; $fd +dorepeat: macro + db dorepeat_command + db \1 ; # + endm + + enum setrepeat_command ; $fe +setrepeat: macro + db setrepeat_command + db \1 ; # + endm + + enum endanim_command ; $ff +endanim: macro + db endanim_command + endm + +__enum__ = $fe + + enum dorestart_command ; $fe +dorestart: macro ; used for oam + db dorestart_command + endm |