-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmath.z80
480 lines (423 loc) · 5.49 KB
/
math.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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
; this source file contains some math routines
; fast: decoding note codes, 8*8 multiplication (for vibrato and fractional note lengths), 16/8 division (for glissando)
; small: 24*24, 32*24, 16*32, 24*16, 16/8, 40*8, 40/24 (used by cpuspeed.z80) (not all of them are used anymore, but they're all macros so it doesn't matter)
; also: fasmg float^integer exponentiation, used in cpuspeed.z80
; input:
; C: note code ($XY as defined in format.asm) (range is not checked)
; output:
; HL: frequency
; destroys:
; AF,B=0
decode_note:
ld a,c
and $f0
rrca
rrca
rrca
add a,general_tuning and $00ff
ld l,a
ld h,general_tuning shr 8
ld a,[hl]
inc l
ld h,[hl]
ld l,a
ld a,11
sub c
and $0f
ld b,a
.loop:
srl h
rr l
djnz .loop
ret nc
inc hl
ret
; input:
; B: note code
; output:
; A: frequency
; destroys:
; F,B,HL
macro decode_note_bass
local not_less_rshift,loop,after
ld a,b
and $f0
rrca
rrca
rrca
rrca
cp bass_lowest
jr nc,not_less_rshift
dec b
not_less_rshift:
add a,bass_tuning and $00ff
ld l,a
ld h,bass_tuning shr 8
ld l,[hl]
ld a,b
dec a
and $0f
ld b,a
ld a,l
jq z,after
loop:
srl a
djnz loop
adc a,0
after:
end macro
; E * H -> HL
e_mul_h:
ld d,0
sla h
sbc a,a
and e
ld l,a
repeat 6
add hl,hl
jr nc,$+3
add hl,de
end repeat
add hl,hl
ret nc
add hl,de
ret
; inputs:
; A: diff
; HL: base freq
; outputs:
; HL: A * HL >> 11
; destroys:
; AF, BC=0, DE
; 400-490cc
calc_vib_diff:
ex de,hl
ld bc,$0800
ld l,c
ld h,c
.loop:
add hl,hl
rla
jr nc,.not_add
add hl,de
adc a,c
.not_add:
djnz .loop
ld l,a
ld a,h
ld h,l
srl h
rra
srl h
rra
srl h
rra
ld l,a
ret nc
inc hl
ret
;hl_div_c:
; ld b,16
; add hl,hl
; ld a,h
; jr c,.overflow
;.loop:
; cp c
; jr c,.zero
; sub c
; inc l
;.zero:
; sla l
; rla
; jr c,.overflow
; djnz .loop
; HL / B ->
hl_div_b:
add hl,hl
ld a,h
jr c,.2_0
repeat 7
cp b
jr c,$+4
sub b
inc l
sla l
rla
jr c,.2_#%
.1_#%:
end repeat
cp b
ret c
sub b
inc l
ret
.2_0:
repeat 7
sub b
rl l
rla
jr nc,.1_#%
.2_#%:
end repeat
sub b
inc l
ret
;hl_div_c:
; ld b,16
; xor a
;.loop:
; add hl,hl
; rla
; jr c,.overflow
; cp c
; jr c,.nofit
;.overflow:
; inc l
; sub c
;.nofit:
; djnz .loop
; ret
; 24*24 multiplication (29 bytes, 1631-2639cc)
; input:
; IYLDE, HLC, 24-bit operands
; outputs:
; HLCAIX: output
; destroys:
; F, B=0
macro iylde_mul_hlc
local no_carry,loop
ld ix,0
xor a
ld b,24
loop:
add ix,ix
adc a,a
rl c
adc hl,hl
jq nc,no_carry
add ix,de
adc a,iyl
jq nc,no_carry
inc b
jq nz,no_carry
inc hl
no_carry:
djnz loop
end macro
; 32*24 multiplication (38 bytes, 1706-3194cc)
; input:
; CDE: 24-bit number
; DE'BC: 32-bit number
; output:
; C'DE'HL'HL: 56-bit result
; DEBC': 32-bit input
; destroys:
; F, B=0
macro de_mul_debc
local loop,no_carry,no_add
ld hl,0
exx
ld hl,0
ld b,24
loop:
add hl,hl
exx
adc hl,hl
rl e
rl d
rl c
exx
jq nc,no_add
add hl,de
exx
adc hl,bc
jq nc,no_carry
inc e
jq nz,no_carry
inc d
jq nz,no_carry
inc c
no_carry:
exx
no_add:
djnz loop
end macro
; 16*32 multiplication (30 bytes, 2608-4048cc)
; input:
; BC: 16-bit number
; DEHL: 32-bit number
; output:
; DEHLIX: 48-bit number
; destroys:
; A=0, F
macro bc_mul_dehl
local loop,no_carry,no_add
ld a,32
ld ix,0
loop:
add ix,ix
adc hl,hl
rl e
rl d
jq c,no_add
add ix,bc
jq nc,no_carry
inc l
jq nz,no_carry
inc h
jq nz,no_carry
inc de
no_carry:
no_add:
dec a
jq nz,loop
end macro
; 24*16 multiplication (25 bytes, 979-1475cc)
; input:
; IYL-DE, HL: operands
; output:
; HL-A-IX
; destroys:
; B=0, F
macro iylde_mul_hl
local loop,no_carry,no_add
ld ix,0
xor a
ld b,16
loop:
add ix,ix
rla
adc hl,hl
jr nc,no_add
add ix,de
adc a,iyl
jr nc,no_carry
inc hl
no_carry:
no_add:
djnz loop
; adc hl,hl TODO: why tf was this here
end macro
; 16/8 division (18 bytes, 774-870cc)
; input:
; HL, C
; output:
; HL: result
; A: remainder
; destroys:
; B=0,F
macro hl_div_c
local loop,too_big,no_sub
ld b,16
xor a
loop:
add hl,hl
rla
jr c,too_big
cp c
jr c,no_sub
too_big:
sub c
inc l
no_sub:
djnz loop
end macro
; 40*8 multiplication (35 bytes, 688-1080cc)
; input:
; BBC'HL, C
; output:
; CAHL'IX
; destroys:
; swaps shadows
; D=0,F
macro bBChl_mul_c
local loop,no_carry,no_add
xor a
ld ix,0
exx
ld l,a
ld h,a
ld d,8
loop:
ex af,af'
add ix,ix
adc hl,hl
rla
exx
rl c
jr nc,no_add
add ix,hl
exx
adc hl,bc
exx
add a,b
jr nc,no_carry
inc c
no_carry:
no_add:
exx
dec d
jr nz,loop
end macro
; 40/24 division (44 bytes, 2922-3630cc)
; input:
; CHLIX, IYL-DE'
; output:
; CHLIX, AHL'
; destroys:
; B=0,F
macro chlix_div_iylDE
local loop,yes_sub,too_big
ld b,24
exx
xor a
ld l,a
ld h,a
exx
loop:
add ix,ix
inc ixl
adc hl,hl
rl c
exx
adc hl,hl
rla
jr c,too_big
sbc hl,de
sbc a,iyl
jr nc,yes_sub
add hl,de
adc a,iyl
dec ixl
yes_sub:
exx
djnz loop
jr done
too_big:
sbc hl,de
sbc a,iyl
exx
djnz loop
done:
end macro
macro exp_float_int base*,exponent*,return*
local result,unit,exp
unit = base
result = 1
exp = exponent
if exp < 0
exp = -exp
end if
while exp > 0
if exp and 1 = 1
result = result * unit
end if
unit = unit * unit
exp = exp shr 1
end while
exp = exponent
if exp < 0
result = 1 / result
end if
return := result
end macro