summaryrefslogtreecommitdiff
path: root/macros/gfx.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2018-01-22 19:40:17 -0500
committerRangi <remy.oukaour+rangi42@gmail.com>2018-01-22 19:40:17 -0500
commita73c532738d055bb3d28a46b59f7fc87d2c998d4 (patch)
treee3566de414a399ef0711fad034a9c96d9ea9b864 /macros/gfx.asm
parentf81add782affc2ca3b196e0beb98e9c89d0f09ff (diff)
tile+color macros in gfx.asm
Diffstat (limited to 'macros/gfx.asm')
-rw-r--r--macros/gfx.asm19
1 files changed, 19 insertions, 0 deletions
diff --git a/macros/gfx.asm b/macros/gfx.asm
new file mode 100644
index 000000000..d9b1c46b0
--- /dev/null
+++ b/macros/gfx.asm
@@ -0,0 +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 "* 8"
+palette EQUS "+ 8 *"
+color EQUS "+ 2 *"
+
+tiles EQUS "* LEN_2BPP_TILE"
+tile EQUS "+ LEN_2BPP_TILE *"