mirror of
https://github.com/pret/pokegold.git
synced 2026-05-26 06:16:21 -05:00
16 lines
232 B
NASM
Executable File
16 lines
232 B
NASM
Executable File
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
|