diff options
Diffstat (limited to 'asm/macros.inc')
-rw-r--r-- | asm/macros.inc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/asm/macros.inc b/asm/macros.inc index 6d8657892..e6813d319 100644 --- a/asm/macros.inc +++ b/asm/macros.inc @@ -4,6 +4,7 @@ .include "asm/macros/pokemon_data.inc" .include "asm/macros/ec.inc" .include "asm/macros/map.inc" + .include "asm/macros/m4a.inc" .macro region_map_location x, y, width, height, name .byte \x @@ -147,3 +148,8 @@ .2byte MAP_\map_name .space 2 .endm + + .macro window_template bg, top, left, height, width, palno, baseBlock + .byte \bg, \top, \left, \height, \width, \palno + .2byte \baseBlock + .endm |