shithub: pokered

ref: b9a113a9f4712771e37313a4c8a76f7ef23cebb2
dir: /engine/gfx/oam_dma.asm/

View raw version
WriteDMACodeToHRAM::
; Since no other memory is available during OAM DMA,
; DMARoutine is copied to HRAM and executed there.
	ld c, LOW(hDMARoutine)
	ld b, DMARoutineEnd - DMARoutine
	ld hl, DMARoutine
.copy
	ld a, [hli]
	ldh [c], a
	inc c
	dec b
	jr nz, .copy
	ret

DMARoutine:
	; initiate DMA
	ld a, HIGH(wOAMBuffer)
	ldh [rDMA], a

	; wait for DMA to finish
	ld a, $28
.wait
	dec a
	jr nz, .wait
	ret
DMARoutineEnd: