summaryrefslogtreecommitdiff
path: root/include/gfx_macros.inc
blob: ee67fad01e65d32307dace83776c094c67d057b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
macro RGB
    rept _NARG / 3
        dw palred (\1) + palgreen (\2) + palblue (\3)
        shift 3
    endr
endm

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

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

DEF tiles EQUS "* $10"