pokegold/macros/predef.asm
Rangi d2c9e2d74f
Some checks are pending
CI / build (push) Waiting to run
Use features of RGBDS 1.0.0 (#138)
2025-11-12 15:44:00 -05:00

18 lines
260 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