diff options
Diffstat (limited to 'macros/gfx.asm')
-rw-r--r-- | macros/gfx.asm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/macros/gfx.asm b/macros/gfx.asm index 16c7d9b..ff07ba4 100644 --- a/macros/gfx.asm +++ b/macros/gfx.asm @@ -1,2 +1,19 @@ +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 "* PALETTE_SIZE" +palette EQUS "+ PALETTE_SIZE *" +color EQUS "+ PAL_COLOR_SIZE *" + tiles EQUS "* LEN_2BPP_TILE" tile EQUS "+ LEN_2BPP_TILE *" |