aboutsummaryrefslogtreecommitdiffstats
path: root/macros/gfx.asm
diff options
context:
space:
mode:
authorvulcandth <vulcandth@gmail.com>2022-06-06 16:25:31 -0500
committerGitHub <noreply@github.com>2022-06-06 17:25:31 -0400
commit6b5be9129cabe72b9f775b02db1bf7e7169153da (patch)
treed92012450c70f90bf8086bed32ec3dc87b68b332 /macros/gfx.asm
parentImproved Virtual Console patch identifiers (#357) (diff)
downloadpokeyellow-6b5be9129cabe72b9f775b02db1bf7e7169153da.tar.gz
pokeyellow-6b5be9129cabe72b9f775b02db1bf7e7169153da.tar.xz
pokeyellow-6b5be9129cabe72b9f775b02db1bf7e7169153da.zip
RGBDS syntax updates (#358)
New MACRO and DEF syntax
Diffstat (limited to 'macros/gfx.asm')
-rw-r--r--macros/gfx.asm28
1 files changed, 14 insertions, 14 deletions
diff --git a/macros/gfx.asm b/macros/gfx.asm
index 98eabec4..944e6dd5 100644
--- a/macros/gfx.asm
+++ b/macros/gfx.asm
@@ -1,22 +1,22 @@
-RGB: MACRO
-REPT _NARG / 3
- dw palred (\1) + palgreen (\2) + palblue (\3)
- SHIFT 3
-ENDR
+MACRO RGB
+ 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) *"
+DEF palred EQUS "(1 << 0) *"
+DEF palgreen EQUS "(1 << 5) *"
+DEF palblue EQUS "(1 << 10) *"
-palettes EQUS "* PALETTE_SIZE"
-palette EQUS "+ PALETTE_SIZE *"
-color EQUS "+ PAL_COLOR_SIZE *"
+DEF palettes EQUS "* PALETTE_SIZE"
+DEF palette EQUS "+ PALETTE_SIZE *"
+DEF color EQUS "+ PAL_COLOR_SIZE *"
-tiles EQUS "* LEN_2BPP_TILE"
-tile EQUS "+ LEN_2BPP_TILE *"
+DEF tiles EQUS "* LEN_2BPP_TILE"
+DEF tile EQUS "+ LEN_2BPP_TILE *"
-dbsprite: MACRO
+MACRO dbsprite
; x tile, y tile, x pixel, y pixel, vtile offset, attributes
db (\2 * TILE_WIDTH) % $100 + \4, (\1 * TILE_WIDTH) % $100 + \3, \5, \6
ENDM