pokegold-spaceworld/macros/queue.asm
Rangi42 5904823317
Some checks failed
CI / build (push) Has been cancelled
Remove executable permission from various files
2025-12-02 12:23:39 -05:00

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