mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-03-26 03:55:06 -05:00
Ported from Sanqui's Harvest Moon 3 translation project! Also puts a pointcut in place to keep patch WRAM uncleared when starting a new game.
8 lines
137 B
NASM
8 lines
137 B
NASM
HackInterrupt EQU $0000
|
|
|
|
; Note that a hack call takes 3 bytes.
|
|
hack: MACRO
|
|
ld a, (Hack\1Entry - HackTable) / 2
|
|
rst HackInterrupt
|
|
ENDM
|