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
31
32
33
34
35
36
37
38
39
40
41
42
43
|
; Save a pointer to a list, given at de, to wListPointer
SetListPointer:
push hl
ld hl, wListPointer
ld [hl], e
inc hl
ld [hl], d
pop hl
ret
; Return the current element of the list at wListPointer,
; and advance the list to the next element
GetNextElementOfList:
push hl
push de
ld hl, wListPointer
ld e, [hl]
inc hl
ld d, [hl]
ld a, [de]
inc de
; fallthrough
SetListToNextPosition:
ld [hl], d
dec hl
ld [hl], e
pop de
pop hl
ret
; Set the current element of the list at wListPointer to a,
; and advance the list to the next element
SetNextElementOfList:
push hl
push de
ld hl, wListPointer
ld e, [hl]
inc hl
ld d, [hl]
ld [de], a
inc de
jr SetListToNextPosition
|