mirror of https://github.com/pret/pokecrystal.git
16 lines
232 B
NASM
16 lines
232 B
NASM
|
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
|