diff options
author | IIMarckus <iimarckus@gmail.com> | 2010-12-20 16:41:53 -0700 |
---|---|---|
committer | IIMarckus <iimarckus@gmail.com> | 2010-12-20 16:41:53 -0700 |
commit | 3e0eedba7849d717aa4d1e89cf6a2e253857dc29 (patch) | |
tree | 3ff941674243673b24f8c4f766af6597688b8558 /constants.asm | |
parent | f4c48cca7ade0247f45d5fc5e3b31a3bc9419448 (diff) |
Add tileset headers (thx Sawakita)
hg-commit-id: 3a63e0677ec3
Diffstat (limited to 'constants.asm')
-rw-r--r-- | constants.asm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/constants.asm b/constants.asm index a22259d9..45edf027 100644 --- a/constants.asm +++ b/constants.asm @@ -1,3 +1,10 @@ +; tilesets' headers macro +TSETHEAD: MACRO + db BANK(\2) + dw \1,\2,\3 + db \4,\5,\6,\7,\8 + ENDM + ; macro for putting a byte then a word dbw: MACRO db \1 |