shithub: pokecrystal

ref: 689acb0e36fa7c41be3cb13c690db1a90bcbdacc
dir: /macros/predef.asm/

View raw version
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