summaryrefslogtreecommitdiff
path: root/include/gfx_macros.inc
blob: ad52e3271ee2247e1d38957c3ff8d66d905a0903 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 "* $10"