diff options
author | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2018-07-03 13:36:50 -0400 |
---|---|---|
committer | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2018-07-03 13:36:50 -0400 |
commit | 75e4f784924393ccedb27f2831e5a36fe11bada5 (patch) | |
tree | 41b13a63cfc8c1df1244287a4158864874215b8d /macros/queue.asm | |
parent | a655783735e1bd652eb6eff61af092b0414f2913 (diff) |
Merge branch 'master' of https://github.com/luckytyphlosion/pokegold-spaceworld
Diffstat (limited to 'macros/queue.asm')
-rwxr-xr-x | macros/queue.asm | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/macros/queue.asm b/macros/queue.asm index c868dc8..37fb1cb 100755 --- a/macros/queue.asm +++ b/macros/queue.asm @@ -1,17 +1,17 @@ -queue_ab: MACRO
- ld hl, \1
- ldh a, [hROMBank]
- call QueueScript
-ENDM
-
-queue_ba: MACRO
- ldh a, [hROMBank]
- ld hl, \1
- call QueueScript
-ENDM
-
-far_queue: MACRO
- ld hl, \1
- ld a, BANK(\1)
- call QueueScript
-ENDM
+queue_ab: MACRO + ld hl, \1 + ldh a, [hROMBank] + call QueueScript +ENDM + +queue_ba: MACRO + ldh a, [hROMBank] + ld hl, \1 + call QueueScript +ENDM + +far_queue: MACRO + ld hl, \1 + ld a, BANK(\1) + call QueueScript +ENDM |