diff options
author | yenatch <yenatch@gmail.com> | 2013-01-23 15:27:48 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-01-23 15:27:48 -0500 |
commit | a5b2f3c319af93ce86f19fa916c5b1335cb4f863 (patch) | |
tree | 551a1648ff2625fb870f2fbf0e699ce9e673fb30 | |
parent | dd16a2576892326dec80f361094d255cef460d7e (diff) |
temporary animation macros
-rw-r--r-- | constants.asm | 17 |
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 |