shithub: pokered

ref: 063900c7d707dd5bfc3ba2f1c45b1d2b5d83fb14
dir: /engine/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, $ff80 % $100
	ld b, DMARoutineEnd - DMARoutine
	ld hl, DMARoutine
.copy
	ld a, [hli]
	ld [$ff00+c], a
	inc c
	dec b
	jr nz, .copy
	ret

DMARoutine:
	; initiate DMA
	ld a, wOAMBuffer / $100
	ld [$ff46], a

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