summaryrefslogtreecommitdiff
path: root/engine/gfx/load_push_oam.asm
blob: 395188817db97fc1e9747bf96de76255f31a73d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
WriteOAMDMACodeToHRAM::
	ld c, LOW(hTransferVirtualOAM)
	ld b, OAMDMACodeEnd - OAMDMACode
	ld hl, OAMDMACode
.copy
	ld a, [hli]
	ldh [c], a
	inc c
	dec b
	jr nz, .copy
	ret

OAMDMACode:
; This code is defined in ROM, but
; copied to and called from HRAM.
LOAD "OAM DMA", HRAM
hTransferVirtualOAM::
	; initiate DMA
	ld a, HIGH(wVirtualOAM)
	ldh [rDMA], a
	; wait for DMA to finish
	ld a, NUM_SPRITE_OAM_STRUCTS
.wait
	dec a
	jr nz, .wait
	ret
ENDL
OAMDMACodeEnd: