mirror of
https://github.com/pret/pokecrystal.git
synced 2026-05-07 05:28:46 -05:00
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
|