summaryrefslogtreecommitdiff
path: root/macros/scripts
diff options
context:
space:
mode:
authorlibjet <libj3t@gmail.com>2020-02-08 15:31:49 +0000
committerlibjet <libj3t@gmail.com>2020-02-08 15:31:49 +0000
commit0543e933915a65127a8b803789d049478c7889d5 (patch)
treef77d6afd9cf19813ce5b3987a48b22ddee17c701 /macros/scripts
parent4617c1e46b49be5febc4218c705f2d6d06f5adea (diff)
Remove Crystal exlusives
Diffstat (limited to 'macros/scripts')
-rwxr-xr-xmacros/scripts/gfx_anims.asm53
1 files changed, 0 insertions, 53 deletions
diff --git a/macros/scripts/gfx_anims.asm b/macros/scripts/gfx_anims.asm
deleted file mode 100755
index 3756481d..00000000
--- a/macros/scripts/gfx_anims.asm
+++ /dev/null
@@ -1,53 +0,0 @@
-; 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
-; Removes the object from the screen, as opposed to `endanim` which just stops all motion
- db delanim_command
-ENDM
-
- enum dowait_command ; $fd
-dowait: MACRO
- db dowait_command
- db \1 ; frames
-ENDM
-
- enum dorestart_command ; $fe
-dorestart: MACRO
- db dorestart_command
-ENDM
-
- enum endanim_command ; $ff
-endanim: MACRO
- db endanim_command
-ENDM
-
-
-; Used for pic animations
-__enum__ = $fd
-
- enum dorepeat_command ; $fd
-dorepeat: MACRO
- db dorepeat_command
- db \1 ; command offset to jump to
-ENDM
-
- enum setrepeat_command ; $fe
-setrepeat: MACRO
- db setrepeat_command
- db \1 ; amount of times to repeat
-ENDM