mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-03-21 17:45:52 -05:00
18 lines
204 B
NASM
18 lines
204 B
NASM
MACRO queue_ab
|
|
ld hl, \1
|
|
ldh a, [hROMBank]
|
|
call QueueScript
|
|
ENDM
|
|
|
|
MACRO queue_ba
|
|
ldh a, [hROMBank]
|
|
ld hl, \1
|
|
call QueueScript
|
|
ENDM
|
|
|
|
MACRO far_queue
|
|
ld hl, \1
|
|
ld a, BANK(\1)
|
|
call QueueScript
|
|
ENDM
|