diff options
author | YamaArashi <shadow962@live.com> | 2015-10-12 18:08:47 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2015-10-12 18:08:47 -0700 |
commit | d5b5623de723090c8e5282bcd9d3c27cfc75571f (patch) | |
tree | 3ddf23028e11e06bd81b7bb24ab5c5bb5d03f57d /asm/macros.s | |
parent | bfae72bf1debc2b570d1ec221ae07fddb0016a70 (diff) |
evolution table
Diffstat (limited to 'asm/macros.s')
-rw-r--r-- | asm/macros.s | 11 |
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 |