summaryrefslogtreecommitdiff
path: root/constants.asm
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2013-01-23 12:35:38 -0800
committerBryan Bishop <kanzure@gmail.com>2013-01-23 12:35:38 -0800
commitd3c87e37f9f7d1d7a3f79bb0960256c3a21f588d (patch)
tree7d52e6788e2060a7d20751bbb946ff3300c84bcf /constants.asm
parentb05db023a87e157e7e7442d55b62271ab9906cb3 (diff)
parent54f3eb847e239dba0386f95d9346889ad312144b (diff)
Merge pull request #92 from yenatch/master
parse and dump pic animations
Diffstat (limited to 'constants.asm')
-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