mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-03-31 14:35:00 -05:00
18 lines
207 B
NASM
Executable File
18 lines
207 B
NASM
Executable File
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
|