diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-03-10 16:39:31 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-03-10 16:39:31 -0400 |
commit | f5c9958aeaefde7f189402911f8ee1c54e6a2439 (patch) | |
tree | 2023784b811d49267fa9b1ac1f4e9d82c93c3d3d /macros/legacy.asm | |
parent | e002b536af8423f420e13e93d6c0e59f94ee5044 (diff) |
Rename some call/jump script commands to avoid confusion with jr/jp asm instructions
Fixes #580
Diffstat (limited to 'macros/legacy.asm')
-rw-r--r-- | macros/legacy.asm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/macros/legacy.asm b/macros/legacy.asm index ce35cc48d..0f70f4d43 100644 --- a/macros/legacy.asm +++ b/macros/legacy.asm @@ -15,6 +15,14 @@ checkmorn EQUS "checktime MORN" checkday EQUS "checktime DAY" checknite EQUS "checktime NITE" +jump EQUS "sjump" +farjump EQUS "farsjump" +priorityjump EQUS "prioritysjump" +ptcall EQUS "memcall" +ptjump EQUS "memjump" +ptpriorityjump EQUS "stopandsjump" +ptcallasm EQUS "memcallasm" + if_equal EQUS "ifequal" if_not_equal EQUS "ifnotequal" if_greater_than EQUS "ifgreater" |