mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
bef792f2d2
Also named most of the engine and event flag constants.
21 lines
285 B
NASM
21 lines
285 B
NASM
add_predef: MACRO
|
|
\1Predef::
|
|
dwb \1, BANK(\1)
|
|
ENDM
|
|
|
|
predef_id: MACRO
|
|
; Some functions load the predef id
|
|
; without immediately calling Predef.
|
|
ld a, (\1Predef - PredefPointers) / 3
|
|
ENDM
|
|
|
|
predef: MACRO
|
|
predef_id \1
|
|
call Predef
|
|
ENDM
|
|
|
|
predef_jump: MACRO
|
|
predef_id \1
|
|
jp Predef
|
|
ENDM
|