35 lines
972 B
NASM
35 lines
972 B
NASM
; Intended to be a migration of code generated by enemizer
|
|
|
|
lorom
|
|
|
|
;================================================================================
|
|
|
|
!ADD = "CLC : ADC"
|
|
!SUB = "SEC : SBC"
|
|
!BLT = "BCC"
|
|
!BGE = "BCS"
|
|
|
|
;=Constants======================================================================
|
|
|
|
!BUSHES_FLAG = "$368100"
|
|
!BLIND_DOOR_FLAG = "$368101"
|
|
!MOLDORM_EYES_FLAG = "$368102"
|
|
!RANDOM_SPRITE_FLAG = "$368103"
|
|
!AGAHNIM_FUN_BALLS = "$368104"
|
|
!ENABLE_MIMIC_OVERRIDE = "$368105"
|
|
!ENABLE_TERRORPIN_AI_FIX = "$368106"
|
|
|
|
; Enemizer reserved memory
|
|
; $7F50B0 - $7F50BF - Downstream Reserved (Enemizer)
|
|
!SHELL_DMA_FLAG = "$7F50B0"
|
|
!SOUNDFX_LOADED = "$7F50B1"
|
|
;================================================================================
|
|
|
|
incsrc hooks.asm
|
|
|
|
org $B78000 ; the original org is 368000, but I'm putting this here for migration purposes, and I think B6 is the same bank but fastrom
|
|
EnemizerTablesStart:
|
|
;none migrated yet
|
|
|
|
EnemizerCodeStart:
|
|
incsrc blindboss.asm |