mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
20 lines
313 B
NASM
20 lines
313 B
NASM
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 *"
|