tile+color macros in gfx.asm

This commit is contained in:
Rangi
2018-01-22 19:40:17 -05:00
parent f81add782a
commit a73c532738
7 changed files with 17 additions and 15 deletions

19
macros/gfx.asm Normal file
View File

@@ -0,0 +1,19 @@
RGB: MACRO
rept _NARG / 3
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 *"
color EQUS "+ 2 *"
tiles EQUS "* LEN_2BPP_TILE"
tile EQUS "+ LEN_2BPP_TILE *"