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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
; decompresses data from a given bank
; uses values initialized by InitDataDecompression
; input:
; bc = row width
; de = buffer to place decompressed data
DecompressDataFromBank:
ldh a, [hBankROM]
push af
ld a, [wTempPointerBank]
call BankswitchROM
call DecompressData
pop af
call BankswitchROM
ret
; Copies bc bytes from [wTempPointer] to de
CopyBankedDataToDE:
ldh a, [hBankROM]
push af
push hl
ld a, [wTempPointerBank]
call BankswitchROM
ld a, [wTempPointer]
ld l, a
ld a, [wTempPointer + 1]
ld h, a
call CopyDataHLtoDE_SaveRegisters
pop hl
pop af
call BankswitchROM
ret
; fill bc bytes of data at hl with a
FillMemoryWithA:
push hl
push de
push bc
ld e, a
.loop
ld [hl], e
inc hl
dec bc
ld a, b
or c
jr nz, .loop
pop bc
pop de
pop hl
ret
; fill 2*bc bytes of data at hl with d,e
FillMemoryWithDE:
push hl
push bc
.loop
ld [hl], e
inc hl
ld [hl], d
inc hl
dec bc
ld a, b
or c
jr nz, .loop
pop bc
pop hl
ret
; gets far byte a:hl, outputs value in a
GetFarByte:
push hl
push af
ldh a, [hBankROM]
push af
push hl
ld hl, sp+$05
ld a, [hl]
call BankswitchROM
pop hl
ld a, [hl]
ld hl, sp+$03
ld [hl], a
pop af
call BankswitchROM
pop af
pop hl
ret
|