shithub: pokecrystal

ref: ce99c9e93c7a5e898eacbeaf998b769dbb7d1208
dir: /engine/menus/empty_sram.asm/

View raw version
EmptyAllSRAMBanks:
for x, NUM_SRAM_BANKS
	ld a, x
	call .EmptyBank
endr
	ret

.EmptyBank:
	call OpenSRAM
	ld hl, SRAM_Begin
	ld bc, SRAM_End - SRAM_Begin
	xor a
	call ByteFill
	call CloseSRAM
	ret