mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-09-26 13:32:48 -04: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
|