kep-hack/engine/gfx/oam_dma.asm
Rangi 6ef36800b0 Replace raw hex values with HRAM constants
To do: turn constants into labels and use ldh
2020-07-03 22:22:09 -04:00

27 lines
421 B
NASM

WriteDMACodeToHRAM::
; Since no other memory is available during OAM DMA,
; DMARoutine is copied to HRAM and executed there.
ld c, hDMARoutine % $100
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, wOAMBuffer / $100
ld [rDMA], a
; wait for DMA to finish
ld a, $28
.wait
dec a
jr nz, .wait
ret
DMARoutineEnd: