diff options
Diffstat (limited to 'asm/macros.s')
-rw-r--r-- | asm/macros.s | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/asm/macros.s b/asm/macros.s index 7b24cb47c..3fb5c375a 100644 --- a/asm/macros.s +++ b/asm/macros.s @@ -128,3 +128,11 @@ .macro ec_pokemon2 name .2byte (EC_GROUP_POKEMON2 << 9) | SPECIES_\name .endm + + .macro region_map_entry x, y, width, height, name + .byte \x + .byte \y + .byte \width + .byte \height + .4byte gMapName_\name + .endm |