mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
13 lines
261 B
NASM
13 lines
261 B
NASM
QueueScript::
|
|
; Push pointer hl in the current bank to wQueuedScriptBank.
|
|
ldh a, [hROMBank]
|
|
|
|
FarQueueScript::
|
|
; Push pointer a:hl to wQueuedScriptBank.
|
|
ld [wQueuedScriptBank], a
|
|
ld a, l
|
|
ld [wQueuedScriptAddr], a
|
|
ld a, h
|
|
ld [wQueuedScriptAddr + 1], a
|
|
ret
|