summaryrefslogtreecommitdiff
path: root/asm/macros.s
diff options
context:
space:
mode:
Diffstat (limited to 'asm/macros.s')
-rw-r--r--asm/macros.s11
1 files changed, 11 insertions, 0 deletions
diff --git a/asm/macros.s b/asm/macros.s
index 807245d73..619bd7a61 100644
--- a/asm/macros.s
+++ b/asm/macros.s
@@ -93,3 +93,14 @@
.macro level_up_move level, move
.2byte (\level << 9) | \move
.endm
+
+ .macro evo_entry method, parameter, target_pokemon
+ .2byte \method
+ .2byte \parameter
+ .2byte \target_pokemon
+ .2byte 0 ; padding
+ .endm
+
+ .macro empty_evo_entries count
+ .fill 8 * \count, 1, 0
+ .endm