mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-03-31 14:35:00 -05:00
15 lines
195 B
NASM
Executable File
15 lines
195 B
NASM
Executable File
init_script_table: MACRO
|
|
script_id = 0
|
|
ENDM
|
|
|
|
add_script: MACRO
|
|
dw \1
|
|
\1ScriptID = script_id
|
|
script_id = script_id + 1
|
|
ENDM
|
|
|
|
set_script: MACRO
|
|
ld a, \1ScriptID
|
|
ld [wFieldMoveScriptID], a
|
|
ENDM
|