- Introduced a new assembly file for SNES hardware registers, defining key memory addresses and structures for the PPU and DMA channels. - Included detailed comments and references for better understanding and usage of the hardware registers. - Updated the yaze.asm file to disable custom mosaic settings, ensuring compatibility with the new hardware register definitions.
22 lines
371 B
NASM
22 lines
371 B
NASM
; =========================================================
|
|
; yaze custom assembly code
|
|
; =========================================================
|
|
|
|
namespace yaze
|
|
{
|
|
|
|
!YAZE_CUSTOM_MOSAIC = 0
|
|
|
|
|
|
if !YAZE_CUSTOM_MOSAIC != 0
|
|
incsrc "mosaic_change.asm"
|
|
endif
|
|
|
|
!ZS_CUSTOM_OVERWORLD = 1
|
|
|
|
if !ZS_CUSTOM_OVERWORLD != 0
|
|
incsrc "ZSCustomOverworld_v3.asm"
|
|
endif
|
|
|
|
}
|
|
namespace off |