shithub: pokered

ref: 5c0f33cb5350d3e11bd75cc04d943549667ecd4c
dir: /macros/gfx.asm/

View raw version
RGB: MACRO
REPT _NARG / 3
	dw palred (\1) + palgreen (\2) + palblue (\3)
	SHIFT 3
ENDR
ENDM

palred   EQUS "(1 << 0) *"
palgreen EQUS "(1 << 5) *"
palblue  EQUS "(1 << 10) *"

palettes EQUS "* PALETTE_SIZE"
palette  EQUS "+ PALETTE_SIZE *"
color    EQUS "+ PAL_COLOR_SIZE *"

tiles EQUS "* LEN_2BPP_TILE"
tile  EQUS "+ LEN_2BPP_TILE *"