pokecrystal/macros/gfx.asm

20 lines
313 B
NASM
Raw Normal View History

2017-12-14 05:36:24 +00:00
RGB: MACRO
rept _NARG / 3
dw palred (\1) + palgreen (\2) + palblue (\3)
2017-12-14 05:36:24 +00:00
shift
shift
shift
endr
ENDM
palred EQUS "(1 << 0) *"
palgreen EQUS "(1 << 5) *"
palblue EQUS "(1 << 10) *"
2017-12-14 05:36:24 +00:00
palettes EQUS "* 8"
palette EQUS "+ 8 *"
2018-01-23 00:40:17 +00:00
color EQUS "+ 2 *"
tiles EQUS "* LEN_2BPP_TILE"
tile EQUS "+ LEN_2BPP_TILE *"