Deleted several unused modules and some commented code Reorganized some routines to clean up modules Moved some memory into mirrored WRAM Refactored NMI hook aux routine Removed old fake flipper fix
13 lines
591 B
NASM
13 lines
591 B
NASM
;================================================================================
|
|
; Randomize Zora King
|
|
;--------------------------------------------------------------------------------
|
|
LoadZoraKingItemGFX:
|
|
LDA.l $1DE1C3 ; location randomizer writes zora item to
|
|
JML.l PrepDynamicTile
|
|
;--------------------------------------------------------------------------------
|
|
JumpToSplashItemTarget:
|
|
LDA.w $0D90, X
|
|
CMP.b #$FF : BNE + : JML.l SplashItem_SpawnSplash : +
|
|
CMP.b #$00 : JML.l SplashItem_SpawnOther
|
|
;--------------------------------------------------------------------------------
|