mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08: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
|