Reorganize some macros

* tileset data macros go atop their related files, like all the ones in data/
* charmaps are not macros
This commit is contained in:
Remy Oukaour
2018-01-07 13:11:29 -05:00
parent bdd3a55333
commit 6c20ff9e20
8 changed files with 31 additions and 25 deletions

View File

@@ -1,15 +1,15 @@
RGB: MACRO
rept _NARG / 3
dw ((\3) << 10) + ((\2) << 5) + (\1)
dw palred (\1) + palgreen (\2) + palblue (\3)
shift
shift
shift
endr
ENDM
palred EQUS "(1 << 0) *"
palgreen EQUS "(1 << 5) *"
palblue EQUS "(1 << 10) *"
palettes EQUS "* 8"
palette EQUS "+ 8 *"
palred EQUS "$0001 *"
palgreen EQUS "$0020 *"
palblue EQUS "$0400 *"