summaryrefslogtreecommitdiff
path: root/asm/macros/event.inc
diff options
context:
space:
mode:
authorcamthesaxman <cameronghall@cox.net>2017-09-24 14:17:14 -0500
committercamthesaxman <cameronghall@cox.net>2017-09-24 14:17:14 -0500
commitae5ec7f5b05218ba21c53ef632590a5243a7f647 (patch)
tree5137f687b88c950190e4bb734a688909d8f77658 /asm/macros/event.inc
parent0c234d0929a6f7bb41277275f06abae1b3d7e823 (diff)
Replace script commands: snop -> nop, snop1 -> nop1, jump -> goto
Diffstat (limited to 'asm/macros/event.inc')
-rw-r--r--asm/macros/event.inc6
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