Update to rgbds v0.7.0

This commit is contained in:
Rangi
2024-01-03 10:58:53 -05:00
committed by xCrystal
parent 3e952c0b0f
commit 0df29e5aaf
22 changed files with 61 additions and 72 deletions

View File

@@ -7,8 +7,8 @@ endr
.EmptyBank:
call OpenSRAM
ld hl, SRAM_Begin
ld bc, SRAM_End - SRAM_Begin
ld hl, STARTOF(SRAM)
ld bc, SIZEOF(SRAM)
xor a
call ByteFill
call CloseSRAM

View File

@@ -39,8 +39,8 @@ _ResetWRAM:
xor a
call ByteFill
ld hl, WRAM1_Begin
ld bc, wGameData - WRAM1_Begin
ld hl, STARTOF(WRAMX)
ld bc, wGameData - STARTOF(WRAMX)
xor a
call ByteFill