summaryrefslogtreecommitdiff
path: root/src/ubox/ubox_set_sprite_pat8.z80
blob: 11b0205fd9893df025b67ff98e63f7560cbf9586 (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
29
30
.globl _ubox_set_sprite_pat8
.globl _ubox_write_vm

_ubox_set_sprite_pat8::
	ld hl, #2
	add hl, sp

	ld e, (hl)
	inc hl
	ld d, (hl)
	inc hl

	ld l, (hl)
	ld h, #0
	add hl, hl
	add hl, hl
	add hl, hl
	ld bc, #0x3800
	add hl, bc

	push de
	ld bc, #8
	push bc
	push hl
	call _ubox_write_vm
	pop af
	pop af
	pop af
	ret