summaryrefslogtreecommitdiff
path: root/asm/macros.s
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2015-10-12 18:08:47 -0700
committerYamaArashi <shadow962@live.com>2015-10-12 18:08:47 -0700
commitd5b5623de723090c8e5282bcd9d3c27cfc75571f (patch)
tree3ddf23028e11e06bd81b7bb24ab5c5bb5d03f57d /asm/macros.s
parentbfae72bf1debc2b570d1ec221ae07fddb0016a70 (diff)
evolution table
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