-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathto_str.z80
287 lines (258 loc) · 3.83 KB
/
to_str.z80
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
to_str_LUT:
.db (+_-$-1)/2
.dw ui8_convert_to_str
.dw ui16_convert_to_str
.dw ui32_convert_to_str
.dw fixed88_convert_to_str
.dw fixed1616_convert_to_str
.dw var_convert_to_str
.dw true_convert_to_str
.dw false_convert_to_str
.dw tstr_ref_convert_to_str
.dw raw_convert_to_str
.dw str_convert_to_str
.dw str_ref_convert_to_str
.dw single_convert_to_str
.dw xfloat_convert_to_str
.dw list_convert_to_str
.dw list_ref_convert_to_str
.dw char_convert_to_str
_:
char_convert_to_str:
ld hl,OP2+1
ld (hl),0
dec hl
ld a,(de)
ld (hl),a
ret
ui8_convert_to_str:
ld a,(de)
ld hl,(heap_top)
#include "conversion/uitoa_8.z80"
ui16_convert_to_str:
ex de,hl
ld e,(hl)
inc hl
ld d,(hl)
ld hl,(heap_top)
#include "conversion/uitoa_16.z80"
ui32_convert_to_str:
ex de,hl
ld e,(hl)
inc hl
ld d,(hl)
inc hl
ld a,(hl)
inc hl
ld h,(hl)
ld l,a
ex de,hl
ld ix,(heap_top)+10
ld (ix),0
#include "conversion/uint32tostr_baseC.z80"
fixed88_convert_to_str:
ex de,hl
ld e,(hl)
inc hl
ld d,(hl)
ld hl,(heap_top)
#include "conversion/fixed88_to_str.z80"
fixed1616_convert_to_str:
ex de,hl
ld e,(hl)
inc hl
ld d,(hl)
inc hl
ld a,(hl)
inc hl
ld h,(hl)
ld l,a
ex de,hl
#include "conversion/fixed1616_to_str.z80"
true_convert_to_str:
false_convert_to_str:
ld a,(de)
cp type_false
false_to_str:
ld hl,s_false
jr z,+_
true_to_str:
ld hl,s_true
_:
ld de,(heap_top)
ld bc,6
ldir
ld hl,(heap_top)
ret
s_false:
.db "false",0
s_true:
.db "true",0
var_convert_to_str:
raw_convert_to_str:
jp err_syntax
list_ref_convert_to_str:
ex de,hl
ld e,(hl)
inc hl
ld d,(hl)
inc de
inc de
inc de
list_convert_to_str:
ex de,hl
ld c,(hl)
inc hl
ld b,(hl)
inc hl
;HL points to the first entry
;BC is the number of entries
; We wil use the heap to store the string.
ex de,hl
ld hl,(heap_ptr)
;create a string
ld (hl),type_str
inc hl
inc hl
inc hl
;save the pointer for later
push hl
;write `[`
ld (hl),$C1
inc hl
ex de,hl
jr list_to_str_begin
list_to_str_loop:
push hl
push bc
ld a,(hl)
ex de,hl
cp type_str
jr z,write_quote
cp type_tstr_ref
jr nz,+_
write_quote:
ld (hl),$22 ;quote
inc hl
_:
push af ;is string?
push hl ;where to write
ld (heap_ptr),hl
inc de
call val_adjust_ptr
ld hl,to_str_LUT
call jumptableindex
pop de
call strcopy
dec de
pop af
jr nz,+_
ld a,$22 ;quote
ld (de),a
inc de
_:
pop bc
pop hl
ld a,c
dec a
or b
jr z,list_to_str_no_comma
ld a,','
ld (de),a
inc de
ld a,(hl)
push de
ld de,type_size_LUT
add a,e
ld e,a
jr nc,$+3
inc d
ld a,(de)
ld d,0
or a
jr nz,+_
inc hl
ld e,(hl)
inc hl
ld d,(hl)
inc hl
.db $FE
_:
ld e,a
add hl,de
pop de
dec bc
list_to_str_begin:
ld a,b
or c
jr nz,list_to_str_loop
list_to_str_no_comma:
;write `]`
ex de,hl
ld (hl),']'
inc hl
xor a ;reset the c flag for the `sbc hl,de` below
ld (hl),a
inc hl
ld (heap_ptr),hl
;now pop the start of the string and restore heap_ptr
pop de
;now get the size of the string
; or a
sbc hl,de
push de
ex de,hl
dec hl
ld (hl),d
dec hl
ld (hl),e
dec hl
call sto_temp
pop hl
ret
tstr_ref_convert_to_str:
ex de,hl
ld e,(hl)
inc hl
ld d,(hl)
inc hl
ld c,(hl)
inc hl
ld b,(hl)
;DE points to the string
;BC is the size of the existing string
;For now, copy it to xOP2
ld hl,xOP2
ex de,hl
ld a,b
or c
jr nz,+_
ex de,hl
ld (hl),a
ret
_:
call tokstr2ascii
ld hl,xOP2
ret
str_ref_convert_to_str:
ex de,hl
ld e,(hl)
inc hl
ld d,(hl)
str_convert_to_str:
ex de,hl
ret
single_convert_to_str:
ex de,hl
ld bc,(heap_top)
call single2str_p0
ld h,b
ld l,c
ret
xfloat_convert_to_str:
ex de,hl
ld bc,(heap_top)
call xtostr_p0
ld h,b
ld l,c
ret