diff options
author | yenatch <yenatch@gmail.com> | 2015-11-13 00:44:06 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2015-11-13 00:44:06 -0500 |
commit | 9c5473e965520f672640daf4ee76622640e0de15 (patch) | |
tree | 33d513a05a026cb6c094eb7ee73ad52ee36d0888 /macros.asm | |
parent | 1c1fe276ca59726bb0008c60006c6b48cd093573 (diff) | |
parent | 40802da3cf27a453f62c8c4b712e876b06a9d834 (diff) |
Merge pull request #326 from PikalaxALT/master
Reopen #325
Diffstat (limited to 'macros.asm')
-rw-r--r-- | macros.asm | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/macros.asm b/macros.asm index 68436697f..1d23392fa 100644 --- a/macros.asm +++ b/macros.asm @@ -175,4 +175,39 @@ bcd: MACRO endr ENDM +tiles EQUS "* $10" tile EQUS "+ $10 *" + +partymon: MACRO + db \1 + db \2 + db \3, \4, \5, \6 + dw \7 + dt \8 +rept 8 + shift +endr +rept 5 + bigdw \1 + shift +endr + db \1, \2 + db \3, \4, \5, \6 +rept 6 + shift +endr + db \1 + db \2, \3, \4 + db \5 + db \6, \7 +rept 7 + shift +endr +rept 7 + bigdw \1 + shift +endr + db \1 +ENDM + +palettes EQUS "* 8" |