summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2013-01-23 15:27:48 -0500
committeryenatch <yenatch@gmail.com>2013-01-23 15:27:48 -0500
commita5b2f3c319af93ce86f19fa916c5b1335cb4f863 (patch)
tree551a1648ff2625fb870f2fbf0e699ce9e673fb30
parentdd16a2576892326dec80f361094d255cef460d7e (diff)
temporary animation macros
-rw-r--r--constants.asm17
1 files changed, 17 insertions, 0 deletions
diff --git a/constants.asm b/constants.asm
index 7d73f4232..2bcb0d223 100644
--- a/constants.asm
+++ b/constants.asm
@@ -3345,3 +3345,20 @@ Unkn1Pals EQU $d000 ; 8 4-color palettes little endian)
Unkn2Pals EQU $d040 ; 8 4-color palettes little endian)
BGPals EQU $d080 ; 8 4-color palettes little endian)
OBPals EQU $d0c0 ; 8 4-color palettes little endian)
+
+; oh my god this is hacky stop being so hacky
+frame: MACRO
+ db \1
+ db \2
+ ENDM
+setrepeat: MACRO
+ db $fe
+ db \1
+ ENDM
+dorepeat: MACRO
+ db $fd
+ db \1
+ ENDM
+endanim: MACRO
+ db $ff
+ ENDM