diff options
author | camthesaxman <cameronghall@cox.net> | 2017-09-24 14:17:14 -0500 |
---|---|---|
committer | camthesaxman <cameronghall@cox.net> | 2017-09-24 14:17:14 -0500 |
commit | ae5ec7f5b05218ba21c53ef632590a5243a7f647 (patch) | |
tree | 5137f687b88c950190e4bb734a688909d8f77658 /asm/macros/event.inc | |
parent | 0c234d0929a6f7bb41277275f06abae1b3d7e823 (diff) |
Replace script commands: snop -> nop, snop1 -> nop1, jump -> goto
Diffstat (limited to 'asm/macros/event.inc')
-rw-r--r-- | asm/macros/event.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/asm/macros/event.inc b/asm/macros/event.inc index 9fddd9194..31103747b 100644 --- a/asm/macros/event.inc +++ b/asm/macros/event.inc @@ -1,10 +1,10 @@ @ Does nothing. - .macro snop + .macro nop .byte 0x00 .endm @ Does nothing. - .macro snop1 + .macro nop1 .byte 0x01 .endm @@ -25,7 +25,7 @@ .endm @ Jumps to destination and continues script execution from there. - .macro jump destination + .macro goto destination .byte 0x05 .4byte \destination .endm |