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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
|
strtoull:
phy.q
and
tay
pha.q
@loop:
lda (sp+26), y
pha
jsr isdigit
pla
bne @digit
jsr tolower
pha
jsr islower
pla
beq @end
@alpha:
sub
bra @chkbase
@digit:
sub
@chkbase:
cmp sp+25
bcs @end
@addval:
tab
lda.q sp+1
mul sp+25
add a, b
sta.q sp+1
iny
and
bra @loop
@end:
pla.q
ply.q
ldb
rts
strlen:
and
@loop:
inc
cmp (d+a-1),
bne @loop
@end:
dec
rts
strcmp:
phb.q
phx.q
phy.q
and
tab
tax
tay
@loop:
ldx
mov a, (d+y)
beq cmpr
ldx
cmp a, (s+y)
bne cmpr
iny
bra @loop
strcasecmp:
phb.q
phx.q
phy.q
and
tab
tax
inx
tay
@loop:
dex
mov a, (d+y)
beq cmpr
inx
jsr tolower
tab
mov a, (s+y)
jsr tolower
cmp b
bne cmpr
iny
bra @loop
cmpr:
mov a, (s+y)
beq @islong
@isshort:
mov a, (d+y)
bne @islong
lda
bra @end
@islong:
cpx
set a, eq
@end:
ply.q
plx.q
plb.q
rts
isdigit:
sec
sbc
and
cmp
lcc
lcs
rts
isxdigit:
pha
jsr isdigit
pla
bne @end
@alpha:
ora
sub
and
cmp
lcc
lcs
@end:
rts
isupper:
sub
bra isletter
islower:
sub
isletter:
and
cmp
lcc
lcs
rts
tolower:
pha
jsr isupper
pla
beq @end
@lower:
ora
@end:
rts
toupper:
pha
jsr islower
pla
beq @end
@upper:
and
@end:
rts
malloc:
phb.q
phx.q
phy.q
xor b, b
mov x, b
txy
mov a, d
beq @end
add
cmp
bcs @getheapf
@toosmall:
lda
@getheapf:
mov d, a
ldb.q heapf
bra @checkblk
@findfblk:
mov.q a, (b+fblk.size)
sub a, d
bcs @blkfound
mov.q b, (b+fblk.next)
@checkblk:
bne @findfblk
mov a, d
add.q heapptr
bcs @outofspace
cmp.q heapend
bcc @inctop
beq @inctop
@outofspace:
and
bra @end
@inctop:
ldb.q heapptr
sta.q heapptr
bra @setsize
@blkfound:
bne @sliceblk
cmp
bcs @sliceblk
mov.q x, (b+fblk.prev)
beq @setheapf
ldy
mov.q (x+y), (b+y)
bra @chknxtblk
@setheapf:
ldy
mov.q heapf, (b+y)
@chknxtblk:
mov.q x, (b+y)
beq @setheapl
ldy
mov.q (x+y), (b+y)
bra @retptr
@setheapl:
ldy
mov.q heapl, (b+y)
bra @retptr
@sliceblk:
ldy
sub.q (b+y), d
add.q b, (b+y)
@setsize:
mov.q (b+ublk.size), d
@retptr:
mov.q (b+ublk.start), b
add b,
tba
@end:
ply.q
plx.q
plb.q
rts
free:
pha.q
phb.q
phx.q
phy.q
phe.q
and
tab
tax
tay
mov a, d
bne @getrealblk
bra @end
@getrealblk:
sub
mov.q a, (a)
mov.q b, (a+ublk.size)
lea e, (a+b)
cpe.q heapptr
bne @heapadd
@dectop:
sta.q heapptr
@chklastblk:
ldb.q heapl
beq @end
ldy
mov.q a, (b+fblk.size)
lea e, (a+b)
cpe.q heapptr
bne @end
@delblk:
stb.q heapptr
@correctblk:
mov.q a, (b+fblk.prev)
sta.q heapl
bne @delnxtblk
sta.q heapf
bra @end
@delnxtblk:
lea e, (a+fblk.next)
stz.q (e)
@end:
ple.q
ply.q
plx.q
plb.q
pla.q
rts
@heapadd:
ldy.q heapf
bne @srchflst
@empty:
mov.q (a+fblk.next), y
mov.q (a+fblk.prev), y
sta.q heapf
sta.q heapl
bra @end
@srchflst:
@loop:
cmp y, a
beq @nextright
bcs @chkrmerge
@nextright:
tyx
mov.q y, (y+fblk.next)
bne @loop
@st_lmerge2:
mov.q (a+fblk.next), y
sta.q heapl
bra @chklmerge2
@chkrmerge:
lea e, (a+b)
cmp e, y
bne @normerge
@rmerge:
mov e, b
add.q e, (y+fblk.size)
mov.q (a+fblk.size), e
@rmerge2:
lea fblk.next
mov.q (a+e), (y+e)
mov.q b, (y+e)
beq @setheapl
@setprev:
mov.q (b+fblk.prev), a
bra @chklmerge
@setheapl:
sta.q heapl
bra @chklmerge
@normerge:
mov.q (a+fblk.next), y
mov.q (y+fblk.prev), a
@chklmerge:
and x, x
bne @chklmerge2
@newstart:
mov.q (a+fblk.prev), x
sta.q heapf
bra @end2
@chklmerge2:
mov.q e, (x+fblk.size)
add e, x
cmp e, a
bne @nolmerge
@lmerge:
lea fblk.size
add.q (x+e), (a+e)
@lmerge2:
lea fblk.next
mov.q (x+e), (a+e)
mov.q b, (a+e)
beq @newlast
@lprev:
mov.q (b+fblk.prev), x
bra @end2
@newlast:
stx.q heapl
bra @end2
@nolmerge:
mov.q (x+fblk.next), a
@nolmerge2:
mov.q (a+fblk.prev), x
@end2:
ple.q
ply.q
plb.q
pla.q
rts
memcpy:
phb.q
xor b, b
mov a, d
cmp f,
beq @end
@loop:
mov (d+b), (s+b)
inb
cmp b, f
bne @loop
@end:
plb.q
rts
memset:
phb.q
xor b, b
mov a, d
cmp f,
beq @end
@loop:
mov (d+b), s
inb
cmp b, f
bne @loop
@end:
plb.q
rts
max:
mov a, s
cmp d, s
beq @end
mcs a, d
@end:
rts
min:
mov a, s
cmp d, s
mcc a, d
@end:
rts
|