mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
22 lines
287 B
NASM
22 lines
287 B
NASM
add_predef: MACRO
|
|
\1Predef::
|
|
dw \1
|
|
db 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
|