shithub: pokecrystal

ref: 55ca2da25acc0598539eede5359f25f08223de2d
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