mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
41d5ea0482
Fixes #990
18 lines
257 B
NASM
18 lines
257 B
NASM
; Predef function calls
|
|
|
|
MACRO lda_predef
|
|
; Some functions load the predef id
|
|
; without immediately calling Predef.
|
|
ld a, (\1Predef - PredefPointers) / 3
|
|
ENDM
|
|
|
|
MACRO predef
|
|
lda_predef \1
|
|
call Predef
|
|
ENDM
|
|
|
|
MACRO predef_jump
|
|
lda_predef \1
|
|
jp Predef
|
|
ENDM
|