summaryrefslogtreecommitdiff
path: root/macros/predef.asm
blob: 7850350a71ce610c23bf7e0c08506607830f2eb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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