forked from doj/dracopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dc64ieee.map
1931 lines (1920 loc) · 98.5 KB
/
dc64ieee.map
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
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Modules list:
-------------
dc.o:
CODE Offs=000000 Size=0031F7 Align=00001 Fill=0000
RODATA Offs=000000 Size=00078B Align=00001 Fill=0000
BSS Offs=000000 Size=000100 Align=00001 Fill=0000
DATA Offs=000000 Size=000004 Align=00001 Fill=0000
screen.o:
CODE Offs=0031F7 Size=00021E Align=00001 Fill=0000
BSS Offs=000100 Size=000003 Align=00001 Fill=0000
cat.o:
CODE Offs=003415 Size=000357 Align=00001 Fill=0000
RODATA Offs=00078B Size=00001C Align=00001 Fill=0000
dir.o:
CODE Offs=00376C Size=000AE2 Align=00001 Fill=0000
RODATA Offs=0007A7 Size=000030 Align=00001 Fill=0000
base.o:
CODE Offs=00424E Size=000031 Align=00001 Fill=0000
RODATA Offs=0007D7 Size=000024 Align=00001 Fill=0000
ops.o:
CODE Offs=00427F Size=00118F Align=00001 Fill=0000
RODATA Offs=0007FB Size=0003D0 Align=00001 Fill=0000
BSS Offs=000103 Size=00008C Align=00001 Fill=0000
DATA Offs=000004 Size=0000D6 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(_afailed.o):
CODE Offs=00540E Size=000032 Align=00001 Fill=0000
RODATA Offs=000BCB Size=00001B Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(_cursor.o):
BSS Offs=00018F Size=000001 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(_directerrno.o):
CODE Offs=005440 Size=00000A Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(_file.o):
DATA Offs=0000DA Size=00001E Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(_heap.o):
DATA Offs=0000F8 Size=00000A Align=00001 Fill=0000
ONCE Offs=000000 Size=000010 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(_heapmemavail.o):
CODE Offs=00544A Size=00004E Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(_hextab.o):
RODATA Offs=000BE6 Size=000010 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(_longminstr.o):
RODATA Offs=000BF6 Size=00000C Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(_mappederrno.o):
CODE Offs=005498 Size=000010 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(_oserror.o):
BSS Offs=000190 Size=000001 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(_printf.o):
CODE Offs=0054A8 Size=0003A5 Align=00001 Fill=0000
BSS Offs=000191 Size=00002B Align=00001 Fill=0000
DATA Offs=000102 Size=000003 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(_seterrno.o):
CODE Offs=00584D Size=000009 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(add.o):
CODE Offs=005856 Size=00001C Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(addeqsp.o):
CODE Offs=005872 Size=000011 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(addysp.o):
CODE Offs=005883 Size=00000E Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(aslax1.o):
CODE Offs=005891 Size=000008 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(aslax2.o):
CODE Offs=005899 Size=00000B Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(atoi.o):
CODE Offs=0058A4 Size=000091 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(axlong.o):
CODE Offs=005935 Size=00000D Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(bneg.o):
CODE Offs=005942 Size=00000E Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(bordercolor.o):
CODE Offs=005950 Size=000008 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(c_basin.o):
CODE Offs=005958 Size=000006 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(c_chkin.o):
CODE Offs=00595E Size=00000A Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(c_close.o):
CODE Offs=005968 Size=000004 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(c_clrch.o):
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(c_open.o):
CODE Offs=00596C Size=000009 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(c_readst.o):
CODE Offs=005975 Size=000005 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(c_setlfs.o):
CODE Offs=00597A Size=00000E Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(c_setnam.o):
CODE Offs=005988 Size=000013 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(callmain.o):
CODE Offs=00599B Size=000017 Align=00001 Fill=0000
DATA Offs=000105 Size=000004 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(calloc.o):
CODE Offs=0059B2 Size=000021 Align=00001 Fill=0000
BSS Offs=0001BC Size=000002 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(cbm_close.o):
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(cbm_dir.o):
CODE Offs=0059D3 Size=00028B Align=00001 Fill=0000
RODATA Offs=000C02 Size=00000C Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(cbm_filetype.o):
CODE Offs=005C5E Size=000013 Align=00001 Fill=0000
RODATA Offs=000C0E Size=000014 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(cbm_open.o):
CODE Offs=005C71 Size=000010 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(cbm_read.o):
CODE Offs=005C81 Size=00005B Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(cbm_write.o):
CODE Offs=005CDC Size=00004A Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(cclear.o):
CODE Offs=005D26 Size=000015 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(cgetc.o):
CODE Offs=005D3B Size=000047 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(chline.o):
CODE Offs=005D82 Size=000015 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(clinechars.o):
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(clrscr.o):
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(color.o):
CODE Offs=005D97 Size=000010 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(condes.o):
CODE Offs=005DA7 Size=00000C Align=00001 Fill=0000
DATA Offs=000109 Size=000025 Align=00001 Fill=0000
ONCE Offs=000010 Size=00000C Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(conio.o):
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(cprintf.o):
CODE Offs=005DB3 Size=00002A Align=00001 Fill=0000
BSS Offs=0001BE Size=000001 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(cputc.o):
CODE Offs=005DDD Size=00006D Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(cputhex.o):
CODE Offs=005E4A Size=00001C Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(cputs.o):
CODE Offs=005E66 Size=000023 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(crt0.o):
STARTUP Offs=000000 Size=000033 Align=00001 Fill=0000
ONCE Offs=00001C Size=00001A Align=00001 Fill=0000
INIT Offs=000000 Size=00001C Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(ctype.o):
RODATA Offs=000C22 Size=00008B Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(ctypemask.o):
CODE Offs=005E89 Size=00001E Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(cursor.o):
CODE Offs=005EA7 Size=00000A Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(cvline.o):
CODE Offs=005EB1 Size=000018 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(decax1.o):
CODE Offs=005EC9 Size=000007 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(decax2.o):
CODE Offs=005ED0 Size=000007 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(decax3.o):
CODE Offs=005ED7 Size=000007 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(decax4.o):
CODE Offs=005EDE Size=000007 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(decaxy.o):
CODE Offs=005EE5 Size=000009 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(decsp1.o):
CODE Offs=005EEE Size=000009 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(decsp2.o):
CODE Offs=005EF7 Size=00000D Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(decsp4.o):
CODE Offs=005F04 Size=00000D Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(decsp6.o):
CODE Offs=005F11 Size=00000D Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(decsp8.o):
CODE Offs=005F1E Size=00000D Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(div.o):
CODE Offs=005F2B Size=000015 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(enter.o):
CODE Offs=005F40 Size=00000E Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(errno.o):
BSS Offs=0001BF Size=000002 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(exehdr.o):
EXEHDR Offs=000000 Size=00000C Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(filedes.o):
CODE Offs=005F4E Size=00000E Align=00001 Fill=0000
DATA Offs=00012E Size=000010 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(fprintf.o):
CODE Offs=005F5C Size=00002B Align=00001 Fill=0000
BSS Offs=0001C1 Size=000001 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(free.o):
CODE Offs=005F87 Size=0001D3 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(fwrite.o):
CODE Offs=00615A Size=00007B Align=00001 Fill=0000
BSS Offs=0001C2 Size=000002 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(gotoxy.o):
CODE Offs=0061D5 Size=00000D Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(icmp.o):
CODE Offs=0061E2 Size=00002E Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(incax1.o):
CODE Offs=006210 Size=000007 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(incax2.o):
CODE Offs=006217 Size=000007 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(incax3.o):
CODE Offs=00621E Size=000005 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(incax5.o):
CODE Offs=006223 Size=000005 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(incax6.o):
CODE Offs=006228 Size=000005 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(incax7.o):
CODE Offs=00622D Size=000005 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(incaxy.o):
CODE Offs=006232 Size=00000B Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(incsp1.o):
CODE Offs=00623D Size=000007 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(incsp2.o):
CODE Offs=006244 Size=000016 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(incsp3.o):
CODE Offs=00625A Size=000005 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(incsp4.o):
CODE Offs=00625F Size=000005 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(incsp5.o):
CODE Offs=006264 Size=000005 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(incsp6.o):
CODE Offs=006269 Size=000005 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(incsp7.o):
CODE Offs=00626E Size=000005 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(incsp8.o):
CODE Offs=006273 Size=000005 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(isprint.o):
CODE Offs=006278 Size=00000A Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(jmpvec.o):
DATA Offs=00013E Size=000003 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(kbhit.o):
CODE Offs=006282 Size=000009 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(kernal.o):
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(kplot.o):
CODE Offs=00628B Size=00000B Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(laddeqsp.o):
CODE Offs=006296 Size=000023 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(ldaxi.o):
CODE Offs=0062B9 Size=00000D Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(ldaxsp.o):
CODE Offs=0062C6 Size=000009 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(ldeaxysp.o):
CODE Offs=0062CF Size=000013 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(leaaxsp.o):
CODE Offs=0062E2 Size=00000C Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(leave.o):
CODE Offs=0062EE Size=00001D Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(lneg.o):
CODE Offs=00630B Size=00001E Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(loadaddr.o):
LOADADDR Offs=000000 Size=000002 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(lpush.o):
CODE Offs=006329 Size=000021 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(ltoa.o):
CODE Offs=00634A Size=000095 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(makebool.o):
CODE Offs=0063DF Size=00002C Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(malloc.o):
CODE Offs=00640B Size=00010E Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(memcpy.o):
CODE Offs=006519 Size=00003C Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(memset.o):
CODE Offs=006555 Size=00005D Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(mod.o):
CODE Offs=0065B2 Size=000011 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(mul.o):
CODE Offs=0065C3 Size=000045 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(mul8.o):
CODE Offs=006608 Size=00003A Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(mulax10.o):
CODE Offs=006642 Size=000019 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(negabs.o):
CODE Offs=00665B Size=000012 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(or.o):
CODE Offs=00666D Size=000012 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(oserror.o):
CODE Offs=00667F Size=000016 Align=00001 Fill=0000
RODATA Offs=000CAD Size=00005A Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(popa.o):
CODE Offs=006695 Size=00000C Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(popptr1.o):
CODE Offs=0066A1 Size=00000E Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(push1.o):
CODE Offs=0066AF Size=000005 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(pusha.o):
CODE Offs=0066B4 Size=000016 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(pushax.o):
CODE Offs=0066CA Size=00001A Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(pushw.o):
CODE Offs=0066E4 Size=00000F Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(pushwsp.o):
CODE Offs=0066F3 Size=00001C Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(raise.o):
CODE Offs=00670F Size=00002B Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(regswap2.o):
CODE Offs=00673A Size=000016 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(revers.o):
CODE Offs=006750 Size=000014 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(rwcommon.o):
CODE Offs=006764 Size=00001A Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(shelp.o):
CODE Offs=00677E Size=000020 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(signal.o):
CODE Offs=00679E Size=000030 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(sigtable.o):
DATA Offs=000141 Size=00000C Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(sprintf.o):
CODE Offs=0067CE Size=00002B Align=00001 Fill=0000
BSS Offs=0001C4 Size=000001 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(staspidx.o):
CODE Offs=0067F9 Size=000016 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(status.o):
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(staxsp.o):
CODE Offs=00680F Size=00000B Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(staxspi.o):
CODE Offs=00681A Size=00001B Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(strcmp.o):
CODE Offs=006835 Size=000021 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(strcpy.o):
CODE Offs=006856 Size=00001F Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(strlen.o):
CODE Offs=006875 Size=000016 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(strlower.o):
CODE Offs=00688B Size=000027 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(strncmp.o):
CODE Offs=0068B2 Size=000039 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(strstr.o):
CODE Offs=0068EB Size=000052 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(sub.o):
CODE Offs=00693D Size=000015 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(subeqsp.o):
CODE Offs=006952 Size=000015 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(subysp.o):
CODE Offs=006967 Size=00000D Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(udiv.o):
CODE Offs=006974 Size=00004F Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(umod.o):
CODE Offs=0069C3 Size=000011 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(vcprintf.o):
CODE Offs=0069D4 Size=000078 Align=00001 Fill=0000
DATA Offs=00014D Size=000008 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(vfprintf.o):
CODE Offs=006A4C Size=000061 Align=00001 Fill=0000
DATA Offs=000155 Size=000008 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(vsnprintf.o):
CODE Offs=006AAD Size=0000DA Align=00001 Fill=0000
DATA Offs=00015D Size=000008 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(vsprintf.o):
CODE Offs=006B87 Size=000012 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(wherex.o):
CODE Offs=006B99 Size=000005 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(wherey.o):
CODE Offs=006B9E Size=000005 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(write.o):
CODE Offs=006BA3 Size=000052 Align=00001 Fill=0000
ONCE Offs=000036 Size=000011 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(zerobss.o):
CODE Offs=006BF5 Size=000023 Align=00001 Fill=0000
E:\dev\github\cityxen\retro-dev-tools\bin-win\cc65\lib/c64.lib(zeropage.o):
ZEROPAGE Offs=000000 Size=00001A Align=00001 Fill=0000
Segment list:
-------------
Name Start End Size Align
----------------------------------------------------
ZEROPAGE 000002 00001B 00001A 00001
LOADADDR 0007FF 000800 000002 00001
EXEHDR 000801 00080C 00000C 00001
STARTUP 00080D 00083F 000033 00001
CODE 000840 007457 006C18 00001
RODATA 007458 00815E 000D07 00001
DATA 00815F 0082C3 000165 00001
INIT 0082C4 0082DF 00001C 00001
BSS 0082E0 0084A4 0001C5 00001
ONCE 0082E0 00832A 00004B 00001
Exports list by name:
---------------------
BASIN 00FFCF RLA BSOUT 00FFD2 RLA
CHKIN 00FFC6 RLA CKOUT 00FFC9 RLA
CLOSE 00FFC3 RLA CLRCH 00FFCC RLA
CURS_X 0000D3 RLZ CURS_Y 0000D6 RLZ
OPEN 00FFC0 RLA PLOT 006ACB RLA
READST 00FFB7 RLA SETLFS 00FFBA RLA
SETNAM 00FFBD RLA ST 000090 RLZ
_DIR1H 0083E3 RLA _DIR2H 0083E4 RLA
__BSS_RUN__ 0082E0 RLA __BSS_SIZE__ 0001C5 REA
__CONSTRUCTOR_COUNT__ 000002 REA __CONSTRUCTOR_TABLE__ 008327 RLA
__DESTRUCTOR_COUNT__ 000000 REA __DESTRUCTOR_TABLE__ 00815F RLA
__EXEHDR__ 000001 REA __HEADER_LAST__ 00080D RLA
__HIMEM__ 00C830 REA __LOADADDR__ 000001 REA
__MAIN_SIZE__ 00C023 REA __MAIN_START__ 00080D RLA
__ONCE_RUN__ 0082E0 RLA __STACKSIZE__ 000800 REA
__STARTUP__ 000001 REA __afailed 005C4E RLA
__bzero 006D95 RLA __cbm_filetype 00649E RLA
__ctype 00807A RLA __ctypeidx 008085 RLA
__directerrno 005C80 RLA __errno 00849F RLA
__heapend 00825B RLA __heapfirst 00825D RLA
__heaplast 00825F RLA __heapmemavail 005C8A RLA
__heapptr 008259 RLA __hextab 00803E RLA
__longminstr 00804E RLA __mappederrno 005CD8 RLA
__oserror 008470 RLA __osmaperrno 006EBF RLA
__printf 005DDB RLA __seterrno 00608D RLA
__sig_dfl 00700D RLA _about 004B80 RLA
_atoi 0060E4 RLA _bgcolor 0065DF RLA
_bordercolor 006190 RLA _calloc 0061F2 RLA
_catasc 003E08 RLA _cathex 003C55 RLA
_cbm_close 0061A8 REA _cbm_closedir 006491 RLA
_cbm_k_basin 006198 RLA _cbm_k_chkin 00619E RLA
_cbm_k_close 0061A8 RLA _cbm_k_clrch 00FFCC REA
_cbm_k_open 0061AC RLA _cbm_k_readst 0061B5 RLA
_cbm_k_setlfs 0061BA RLA _cbm_k_setnam 0061C8 RLA
_cbm_open 0064B1 RLA _cbm_opendir 006213 RLA
_cbm_read 0064C1 RLA _cbm_write 00651C RLA
_cclear 00656B RLA _cclearxy 006566 RLA
_cgetc 00657B RLA _changeDeviceID 00540E RLA
_changeDir 005172 RLA _chline 0065C7 RLA
_clearArea 003A37 RLA _clrscr 00E544 REA
_cmd 004ABF RLA _cprintf 0065F3 RLA
_cputc 006622 RLA _cputcxy 00661D RLA
_cputhex16 00668A RLA _cputhex8 006690 RLA
_cputs 0066B0 RLA _cputsxy 0066A6 RLA
_cursor 0066E7 RLA _cvlinexy 0066F1 RLA
_debugu 005AFD RLA _devices 008169 RLA
_devicetype 0083E5 RLA _dirs 008165 RLA
_doDOScommand 0059EF RLA _drawDirFrame 005575 RLA
_drawFrame 003B24 RLA _drivetype 00816B RLA
_execute 004ADE RLA _exit 000825 RLA
_exitScreen 003C40 RLA _fileTypeToStr 005028 RLA
_fprintf 00679C RLA _free 0067C7 RLA
_freeDir 003FAC RLA _fwrite 00699A RLA
_getDeviceType 005678 RLA _gotoxy 006A18 RLA
_initDirWindowHeight 005767 RLA _initScreen 003C19 RLA
_isprint 006AB8 RLA _kbhit 006AC2 RLA
_linebuffer 0083F1 RLA _linebuffer2 00841A RLA
_ltoa 006BA2 RLA _main 005B2D RLA
_mainLoop 000A82 RLA _malloc 006C4B RLA
_memcpy 006D59 RLA _memset 006D9D RLA
_newscreen 003A7F RLA _printDir 004D40 RLA
_printElement 004F2A RLA _raise 006F4F RLA
_readDir 004082 RLA _refreshDir 004CBC RLA
_revers 006F90 RLA _showDir 004C58 RLA
_sprintf 00700E RLA _stderr 008255 RLA
_strcmp 007075 RLA _strcpy 007096 RLA
_strlen 0070B5 RLA _strlower 0070CB RLA
_strncmp 0070F2 RLA _strstr 00712B RLA
_textInput 005772 RLA _textcolor 0065D7 RLA
_ultoa 006BE3 RLA _updateMenu 000840 RLA
_updateScreen 004B45 RLA _vcprintf 00725C RLA
_vfprintf 0072C4 RLA _vsprintf 0073C7 RLA
_waitKey 004A8E RLA _wherex 0073D9 RLA
_wherey 0073DE RLA _write 0073E3 RLA
addeq0sp 0060B2 RLA addeqysp 0060B4 RLA
addysp 0060C4 RLA addysp1 0060C3 RLA
aslax1 0060D1 RLA aslax2 0060D9 RLA
axlong 006175 RLA axulong 00617B RLA
bnega 006186 RLA booleq 006C25 RLA
callmain 0061DB RLA chlinechar 000040 REZ
cputdirect 006641 RLA ctypemask 0066C9 RLA
ctypemaskdirect 0066CD RLA cursor 00846F RLA
cvlinechar 00005D REZ decax1 006709 RLA
decax2 006710 RLA decax3 006717 RLA
decax4 00671E RLA decaxy 006725 RLA
decsp1 00672E RLA decsp2 006737 RLA
decsp4 006744 RLA decsp6 006751 RLA
decsp8 00675E RLA donelib 0065E7 RLA
enter 006780 RLA fdtab 00828D RLA
gotoxy 006A15 RLA incax1 006A50 RLA
incax2 006A57 RLA incax3 006A5E RLA
incax4 006A72 RLA incax5 006A63 RLA
incax6 006A68 RLA incax7 006A6D RLA
incaxy 006A74 RLA incsp1 006A7D RLA
incsp2 006A8C RLA incsp3 006A9A RLA
incsp4 006A9F RLA incsp5 006AA4 RLA
incsp6 006AA9 RLA incsp7 006AAE RLA
incsp8 006AB3 RLA initheap 0082E0 LAI
initlib 0082F0 RLA initstdout 008316 LAI
jmpvec 00829D RLA laddeqysp 006AD8 RLA
ldax0sp 006B06 RLA ldaxi 006AF9 RLA
ldaxidx 006AFB RLA ldaxysp 006B08 RLA
ldeaxysp 006B11 RLA leaa0sp 006B22 RLA
leaaxsp 006B24 RLA leavey 006B38 RLA
mul8x16 006E4A RLA mul8x16a 006E54 RLA
mulax10 006E82 RLA negax 006E9F RLA
negeax 006B4B RLA newline 006651 RLA
plot 006676 RLA popa 006ED5 RLA
popax 006A84 RLA popptr1 006EE1 RLA
popsargsudiv16 006FBE RLA ptr1 00000A RLZ
ptr2 00000C RLZ ptr3 00000E RLZ
ptr4 000010 RLZ push0 006F0A RLA
push1 006EEF RLA pusha 006EF8 RLA
pusha0 006F0C RLA pushax 006F0E RLA
pusheax 006B72 RLA pushl0 006B69 RLA
pushw 006F24 RLA pushw0sp 006F33 RLA
pushwidx 006F26 RLA pushwysp 006F35 RLA
putchar 00667E RLA regbank 000016 RLZ
regswap2 006F7A RLA rwcommon 006FA4 RLA
sigtable 0082A0 RLA sp 000002 RLZ
sreg 000004 RLZ staspidx 007039 RLA
stax0sp 00704F RLA staxspidx 00705A RLA
staxysp 007051 RLA subeq0sp 007192 RLA
subeqysp 007194 RLA subysp 0071A7 RLA
tmp1 000012 RLZ tmp2 000013 RLZ
tosaddax 006098 RLA tosdiva0 00676B RLA
tosicmp 006A24 RLA tosicmp0 006A22 RLA
tosmoda0 006DF2 RLA tosmula0 006E48 RLA
tosorax 006EAF RLA tossuba0 00717D RLA
tossubax 00717F RLA tosudiva0 0071B4 RLA
tosudivax 0071B6 RLA tosumoda0 007203 RLA
tosumulax 006E03 RLA udiv16 0071C5 RLA
vsnprintf 0072F0 RLA zerobss 007435 RLA
Exports list by value:
----------------------
__DESTRUCTOR_COUNT__ 000000 REA __LOADADDR__ 000001 REA
__STARTUP__ 000001 REA __EXEHDR__ 000001 REA
sp 000002 RLZ __CONSTRUCTOR_COUNT__ 000002 REA
sreg 000004 RLZ ptr1 00000A RLZ
ptr2 00000C RLZ ptr3 00000E RLZ
ptr4 000010 RLZ tmp1 000012 RLZ
tmp2 000013 RLZ regbank 000016 RLZ
chlinechar 000040 REZ cvlinechar 00005D REZ
ST 000090 RLZ CURS_X 0000D3 RLZ
CURS_Y 0000D6 RLZ __BSS_SIZE__ 0001C5 REA
__STACKSIZE__ 000800 REA __MAIN_START__ 00080D RLA
__HEADER_LAST__ 00080D RLA _exit 000825 RLA
_updateMenu 000840 RLA _mainLoop 000A82 RLA
_clearArea 003A37 RLA _newscreen 003A7F RLA
_drawFrame 003B24 RLA _initScreen 003C19 RLA
_exitScreen 003C40 RLA _cathex 003C55 RLA
_catasc 003E08 RLA _freeDir 003FAC RLA
_readDir 004082 RLA _waitKey 004A8E RLA
_cmd 004ABF RLA _execute 004ADE RLA
_updateScreen 004B45 RLA _about 004B80 RLA
_showDir 004C58 RLA _refreshDir 004CBC RLA
_printDir 004D40 RLA _printElement 004F2A RLA
_fileTypeToStr 005028 RLA _changeDir 005172 RLA
_changeDeviceID 00540E RLA _drawDirFrame 005575 RLA
_getDeviceType 005678 RLA _initDirWindowHeight 005767 RLA
_textInput 005772 RLA _doDOScommand 0059EF RLA
_debugu 005AFD RLA _main 005B2D RLA
__afailed 005C4E RLA __directerrno 005C80 RLA
__heapmemavail 005C8A RLA __mappederrno 005CD8 RLA
__printf 005DDB RLA __seterrno 00608D RLA
tosaddax 006098 RLA addeq0sp 0060B2 RLA
addeqysp 0060B4 RLA addysp1 0060C3 RLA
addysp 0060C4 RLA aslax1 0060D1 RLA
aslax2 0060D9 RLA _atoi 0060E4 RLA
axlong 006175 RLA axulong 00617B RLA
bnega 006186 RLA _bordercolor 006190 RLA
_cbm_k_basin 006198 RLA _cbm_k_chkin 00619E RLA
_cbm_k_close 0061A8 RLA _cbm_close 0061A8 REA
_cbm_k_open 0061AC RLA _cbm_k_readst 0061B5 RLA
_cbm_k_setlfs 0061BA RLA _cbm_k_setnam 0061C8 RLA
callmain 0061DB RLA _calloc 0061F2 RLA
_cbm_opendir 006213 RLA _cbm_closedir 006491 RLA
__cbm_filetype 00649E RLA _cbm_open 0064B1 RLA
_cbm_read 0064C1 RLA _cbm_write 00651C RLA
_cclearxy 006566 RLA _cclear 00656B RLA
_cgetc 00657B RLA _chline 0065C7 RLA
_textcolor 0065D7 RLA _bgcolor 0065DF RLA
donelib 0065E7 RLA _cprintf 0065F3 RLA
_cputcxy 00661D RLA _cputc 006622 RLA
cputdirect 006641 RLA newline 006651 RLA
plot 006676 RLA putchar 00667E RLA
_cputhex16 00668A RLA _cputhex8 006690 RLA
_cputsxy 0066A6 RLA _cputs 0066B0 RLA
ctypemask 0066C9 RLA ctypemaskdirect 0066CD RLA
_cursor 0066E7 RLA _cvlinexy 0066F1 RLA
decax1 006709 RLA decax2 006710 RLA
decax3 006717 RLA decax4 00671E RLA
decaxy 006725 RLA decsp1 00672E RLA
decsp2 006737 RLA decsp4 006744 RLA
decsp6 006751 RLA decsp8 00675E RLA
tosdiva0 00676B RLA enter 006780 RLA
_fprintf 00679C RLA _free 0067C7 RLA
_fwrite 00699A RLA gotoxy 006A15 RLA
_gotoxy 006A18 RLA tosicmp0 006A22 RLA
tosicmp 006A24 RLA incax1 006A50 RLA
incax2 006A57 RLA incax3 006A5E RLA
incax5 006A63 RLA incax6 006A68 RLA
incax7 006A6D RLA incax4 006A72 RLA
incaxy 006A74 RLA incsp1 006A7D RLA
popax 006A84 RLA incsp2 006A8C RLA
incsp3 006A9A RLA incsp4 006A9F RLA
incsp5 006AA4 RLA incsp6 006AA9 RLA
incsp7 006AAE RLA incsp8 006AB3 RLA
_isprint 006AB8 RLA _kbhit 006AC2 RLA
PLOT 006ACB RLA laddeqysp 006AD8 RLA
ldaxi 006AF9 RLA ldaxidx 006AFB RLA
ldax0sp 006B06 RLA ldaxysp 006B08 RLA
ldeaxysp 006B11 RLA leaa0sp 006B22 RLA
leaaxsp 006B24 RLA leavey 006B38 RLA
negeax 006B4B RLA pushl0 006B69 RLA
pusheax 006B72 RLA _ltoa 006BA2 RLA
_ultoa 006BE3 RLA booleq 006C25 RLA
_malloc 006C4B RLA _memcpy 006D59 RLA
__bzero 006D95 RLA _memset 006D9D RLA
tosmoda0 006DF2 RLA tosumulax 006E03 RLA
tosmula0 006E48 RLA mul8x16 006E4A RLA
mul8x16a 006E54 RLA mulax10 006E82 RLA
negax 006E9F RLA tosorax 006EAF RLA
__osmaperrno 006EBF RLA popa 006ED5 RLA
popptr1 006EE1 RLA push1 006EEF RLA
pusha 006EF8 RLA push0 006F0A RLA
pusha0 006F0C RLA pushax 006F0E RLA
pushw 006F24 RLA pushwidx 006F26 RLA
pushw0sp 006F33 RLA pushwysp 006F35 RLA
_raise 006F4F RLA regswap2 006F7A RLA
_revers 006F90 RLA rwcommon 006FA4 RLA
popsargsudiv16 006FBE RLA __sig_dfl 00700D RLA
_sprintf 00700E RLA staspidx 007039 RLA
stax0sp 00704F RLA staxysp 007051 RLA
staxspidx 00705A RLA _strcmp 007075 RLA
_strcpy 007096 RLA _strlen 0070B5 RLA
_strlower 0070CB RLA _strncmp 0070F2 RLA
_strstr 00712B RLA tossuba0 00717D RLA
tossubax 00717F RLA subeq0sp 007192 RLA
subeqysp 007194 RLA subysp 0071A7 RLA
tosudiva0 0071B4 RLA tosudivax 0071B6 RLA
udiv16 0071C5 RLA tosumoda0 007203 RLA
_vcprintf 00725C RLA _vfprintf 0072C4 RLA
vsnprintf 0072F0 RLA _vsprintf 0073C7 RLA
_wherex 0073D9 RLA _wherey 0073DE RLA
_write 0073E3 RLA zerobss 007435 RLA
__hextab 00803E RLA __longminstr 00804E RLA
__ctype 00807A RLA __ctypeidx 008085 RLA
__DESTRUCTOR_TABLE__ 00815F RLA _dirs 008165 RLA
_devices 008169 RLA _drivetype 00816B RLA
_stderr 008255 RLA __heapptr 008259 RLA
__heapend 00825B RLA __heapfirst 00825D RLA
__heaplast 00825F RLA fdtab 00828D RLA
jmpvec 00829D RLA sigtable 0082A0 RLA
__BSS_RUN__ 0082E0 RLA initheap 0082E0 LAI
__ONCE_RUN__ 0082E0 RLA initlib 0082F0 RLA
initstdout 008316 LAI __CONSTRUCTOR_TABLE__ 008327 RLA
_DIR1H 0083E3 RLA _DIR2H 0083E4 RLA
_devicetype 0083E5 RLA _linebuffer 0083F1 RLA
_linebuffer2 00841A RLA cursor 00846F RLA
__oserror 008470 RLA __errno 00849F RLA
__MAIN_SIZE__ 00C023 REA __HIMEM__ 00C830 REA
_clrscr 00E544 REA READST 00FFB7 RLA
SETLFS 00FFBA RLA SETNAM 00FFBD RLA
OPEN 00FFC0 RLA CLOSE 00FFC3 RLA
CHKIN 00FFC6 RLA CKOUT 00FFC9 RLA
CLRCH 00FFCC RLA _cbm_k_clrch 00FFCC REA
BASIN 00FFCF RLA BSOUT 00FFD2 RLA
Imports list:
-------------
BASIN (kernal.o):
cbm_read.o cbm/cbm.inc:47
c_basin.o cbm/cbm.inc:47
BSOUT (kernal.o):
write.o cbm/cbm.inc:49
crt0.o c64/crt0.s:10
cbm_write.o cbm/cbm.inc:49
CHKIN (kernal.o):
cbm_read.o cbm/cbm.inc:44
c_chkin.o cbm/cbm.inc:44
CKOUT (kernal.o):
write.o cbm/cbm.inc:45
cbm_write.o cbm/cbm.inc:45
CLOSE (kernal.o):
c_close.o cbm/cbm.inc:36
CLRCH (kernal.o):
write.o cbm/cbm.inc:46
cbm_write.o cbm/cbm.inc:46
cbm_read.o cbm/cbm.inc:46
c_clrch.o cbm/cbm.inc:46
CURS_X (conio.o):
wherex.o cbm/wherex.s:8
gotoxy.o cbm/gotoxy.s:9
CURS_Y (conio.o):
wherey.o cbm/wherey.s:8
gotoxy.o cbm/gotoxy.s:9
OPEN (kernal.o):
write.o cbm/cbm.inc:35
c_open.o cbm/cbm.inc:35
PLOT (kplot.o):
cputc.o c64/cputc.s:11
READST (kernal.o):
write.o cbm/cbm.inc:32
cbm_write.o cbm/cbm.inc:32
cbm_read.o cbm/cbm.inc:32
c_readst.o cbm/cbm.inc:32
SETLFS (kernal.o):
write.o cbm/cbm.inc:33
c_setlfs.o cbm/cbm.inc:33
SETNAM (kernal.o):
c_setnam.o cbm/cbm.inc:34
ST (status.o):
crt0.o c64/crt0.s:13
_DIR1H (ops.o):
dir.o src/dir.s:31
dc.o src/dc.s:23
_DIR2H (ops.o):
dc.o src/dc.s:24
__BSS_RUN__ ([linker generated]):
_heap.o common/_heap.s:8
zerobss.o common/zerobss.s:8
__BSS_SIZE__ ([linker generated]):
_heap.o common/_heap.s:8
zerobss.o common/zerobss.s:8
__CONSTRUCTOR_COUNT__ ([linker generated]):
condes.o runtime/condes.s:18
__CONSTRUCTOR_TABLE__ ([linker generated]):
condes.o runtime/condes.s:18
__DESTRUCTOR_COUNT__ ([linker generated]):
condes.o runtime/condes.s:19
__DESTRUCTOR_TABLE__ ([linker generated]):
condes.o runtime/condes.s:19
__EXEHDR__ (exehdr.o):
[linker generated] dc64ieee.cfg:9
__HEADER_LAST__ ([linker generated]):
[linker generated] dc64ieee.cfg:17
[linker generated] dc64ieee.cfg:17
__HIMEM__ ([linker generated]):
[linker generated] dc64ieee.cfg:18
[linker generated] dc64ieee.cfg:17
__LOADADDR__ (loadaddr.o):
[linker generated] dc64ieee.cfg:8
__MAIN_SIZE__ ([linker generated]):
crt0.o c64/crt0.s:11
__MAIN_START__ ([linker generated]):
crt0.o c64/crt0.s:11
__ONCE_RUN__ ([linker generated]):
[linker generated] dc64ieee.cfg:18
[linker generated] dc64ieee.cfg:18
__STACKSIZE__ ([linker generated]):
_heap.o common/_heap.s:8
[linker generated] dc64ieee.cfg:18
__STARTUP__ (crt0.o):
ops.o src/ops.s:13
__afailed (_afailed.o):
dir.o src/dir.s:13
dc.o src/dc.s:13
__bzero (memset.o):
calloc.o common/calloc.s:10
__cbm_filetype (cbm_filetype.o):
cbm_dir.o ../libwrk/c64/cbm_dir.s:13
__ctype (ctype.o):
ctypemask.o common/ctypemask.s:23
__ctypeidx (ctype.o):
ctypemask.o common/ctypemask.s:24
__directerrno (_directerrno.o):
write.o /home/runner/work/cc65/cc65/asminc/errno.inc:10
vsnprintf.o /home/runner/work/cc65/cc65/asminc/errno.inc:10
__errno (errno.o):
_seterrno.o /home/runner/work/cc65/cc65/asminc/errno.inc:7
__heapend (_heap.o):
malloc.o /home/runner/work/cc65/cc65/asminc/_heap.inc:33
_heapmemavail.o /home/runner/work/cc65/cc65/asminc/_heap.inc:33
__heapfirst (_heap.o):
malloc.o /home/runner/work/cc65/cc65/asminc/_heap.inc:34
free.o /home/runner/work/cc65/cc65/asminc/_heap.inc:34
_heapmemavail.o /home/runner/work/cc65/cc65/asminc/_heap.inc:34
__heaplast (_heap.o):
malloc.o /home/runner/work/cc65/cc65/asminc/_heap.inc:35
free.o /home/runner/work/cc65/cc65/asminc/_heap.inc:35
__heapmemavail (_heapmemavail.o):
dc.o src/dc.s:22
__heapptr (_heap.o):
malloc.o /home/runner/work/cc65/cc65/asminc/_heap.inc:32
free.o /home/runner/work/cc65/cc65/asminc/_heap.inc:32
_heapmemavail.o /home/runner/work/cc65/cc65/asminc/_heap.inc:32
__hextab (_hextab.o):
ltoa.o common/ltoa.s:10
cputhex.o conio/cputhex.s:10
__longminstr (_longminstr.o):
ltoa.o common/ltoa.s:10
__mappederrno (_mappederrno.o):
write.o /home/runner/work/cc65/cc65/asminc/errno.inc:10
__oserror (_oserror.o):
_mappederrno.o /home/runner/work/cc65/cc65/asminc/errno.inc:7
_directerrno.o /home/runner/work/cc65/cc65/asminc/errno.inc:7
write.o /home/runner/work/cc65/cc65/asminc/errno.inc:7
cbm_write.o cbm/cbm_write.s:36
cbm_read.o cbm/cbm_read.s:44
cbm_open.o cbm/cbm_open.s:26
cbm_dir.o ../libwrk/c64/cbm_dir.s:23
ops.o src/ops.s:72
dc.o src/dc.s:45
__osmaperrno (oserror.o):
_mappederrno.o /home/runner/work/cc65/cc65/asminc/errno.inc:8
__printf (_printf.o):
vsnprintf.o common/vsnprintf.s:10
vfprintf.o common/vfprintf.s:10
vcprintf.o conio/vcprintf.s:9
__seterrno (_seterrno.o):
_mappederrno.o /home/runner/work/cc65/cc65/asminc/errno.inc:9
_directerrno.o /home/runner/work/cc65/cc65/asminc/errno.inc:9
fwrite.o /home/runner/work/cc65/cc65/asminc/errno.inc:9
signal.o /home/runner/work/cc65/cc65/asminc/errno.inc:9
__sig_dfl (signal.o):
sigtable.o /home/runner/work/cc65/cc65/asminc/signal.inc:53
raise.o /home/runner/work/cc65/cc65/asminc/signal.inc:53
_about (ops.o):
dc.o src/dc.s:55
_atoi (atoi.o):
ops.o src/ops.s:70
_bgcolor (color.o):
screen.o src/screen.s:19
_bordercolor (bordercolor.o):
screen.o src/screen.s:20
_calloc (calloc.o):
dir.o src/dir.s:14
_catasc (cat.o):
dc.o src/dc.s:47
_cathex (cat.o):
dc.o src/dc.s:46
_cbm_close (cbm_close.o):
cbm_dir.o ../libwrk/c64/cbm_dir.s:19
ops.o src/ops.s:17
cat.o src/cat.s:14
dc.o src/dc.s:28
_cbm_closedir (cbm_dir.o):
dir.o src/dir.s:25
dc.o src/dc.s:31
_cbm_k_basin (c_basin.o):
cbm_dir.o ../libwrk/c64/cbm_dir.s:14
dir.o src/dir.s:20
_cbm_k_chkin (c_chkin.o):
cbm_dir.o ../libwrk/c64/cbm_dir.s:15
dir.o src/dir.s:21
_cbm_k_close (c_close.o):
cbm_close.o cbm/cbm_close.s:7
_cbm_k_clrch (c_clrch.o):
cbm_dir.o ../libwrk/c64/cbm_dir.s:16
dir.o src/dir.s:22
_cbm_k_open (c_open.o):
cbm_open.o cbm/cbm_open.s:25
_cbm_k_readst (c_readst.o):
cbm_dir.o ../libwrk/c64/cbm_dir.s:17
dir.o src/dir.s:23
_cbm_k_setlfs (c_setlfs.o):
cbm_open.o cbm/cbm_open.s:25
_cbm_k_setnam (c_setnam.o):
cbm_open.o cbm/cbm_open.s:25
_cbm_open (cbm_open.o):
cbm_dir.o ../libwrk/c64/cbm_dir.s:18
ops.o src/ops.s:16
cat.o src/cat.s:13
dc.o src/dc.s:27
_cbm_opendir (cbm_dir.o):
dir.o src/dir.s:24
_cbm_read (cbm_read.o):
ops.o src/ops.s:18
cat.o src/cat.s:15
dc.o src/dc.s:29
_cbm_write (cbm_write.o):
dc.o src/dc.s:30
_cclear (cclear.o):
ops.o src/ops.s:65
dir.o src/dir.s:30
_cclearxy (cclear.o):
screen.o src/screen.s:23
dc.o src/dc.s:44
_cgetc (cgetc.o):
ops.o src/ops.s:61
base.o src/base.s:15
dc.o src/dc.s:41
_changeDeviceID (ops.o):
dc.o src/dc.s:63
_changeDir (ops.o):
dc.o src/dc.s:62
_chline (chline.o):
screen.o src/screen.s:21
_clearArea (screen.o):
ops.o src/ops.s:48
_clrscr (clrscr.o):
ops.o src/ops.s:54
cat.o src/cat.s:16
screen.o src/screen.s:13
_cmd (ops.o):
dc.o src/dc.s:51
_cprintf (cprintf.o):
ops.o src/ops.s:60
dir.o src/dir.s:28
dc.o src/dc.s:40
_cputc (cputc.o):
vcprintf.o conio/vcprintf.s:9
cputs.o conio/cputs.s:9
cputhex.o conio/cputhex.s:9
ops.o src/ops.s:56
dir.o src/dir.s:27
cat.o src/cat.s:19
screen.o src/screen.s:15
dc.o src/dc.s:36
_cputcxy (cputc.o):
ops.o src/ops.s:57
dc.o src/dc.s:37
_cputhex16 (cputhex.o):
cat.o src/cat.s:23
_cputhex8 (cputhex.o):
cat.o src/cat.s:22
_cputs (cputs.o):
ops.o src/ops.s:58
base.o src/base.s:14
cat.o src/cat.s:20
screen.o src/screen.s:16
dc.o src/dc.s:38
_cputsxy (cputs.o):
ops.o src/ops.s:59
dc.o src/dc.s:39
_cursor (cursor.o):
ops.o src/ops.s:62
_cvlinexy (cvline.o):
screen.o src/screen.s:22
_debugu (ops.o):
dir.o src/dir.s:38
_devices (ops.o):
dc.o src/dc.s:72
_devicetype (ops.o):
dc.o src/dc.s:69
_dirs (ops.o):
dc.o src/dc.s:74
_doDOScommand (ops.o):
dc.o src/dc.s:68
_drawDirFrame (ops.o):
dc.o src/dc.s:64
_drawFrame (screen.o):
ops.o src/ops.s:50
dc.o src/dc.s:26
_drivetype (ops.o):
dc.o src/dc.s:70
_execute (ops.o):
dc.o src/dc.s:52
_exit (crt0.o):
_afailed.o ../libwrk/c64/_afailed.s:16
ops.o src/ops.s:71
_exitScreen (screen.o):
ops.o src/ops.s:52
_fileTypeToStr (ops.o):
dc.o src/dc.s:61
_fprintf (fprintf.o):
_afailed.o ../libwrk/c64/_afailed.s:15
_free (free.o):
dir.o src/dir.s:15
dc.o src/dc.s:21
_freeDir (dir.o):
dc.o src/dc.s:48
_fwrite (fwrite.o):
vfprintf.o common/vfprintf.s:10
_getDeviceType (ops.o):
dc.o src/dc.s:65
_gotoxy (gotoxy.o):
ops.o src/ops.s:55
dir.o src/dir.s:26
cat.o src/cat.s:17
screen.o src/screen.s:14
dc.o src/dc.s:33
_initDirWindowHeight (ops.o):
dc.o src/dc.s:66
_initScreen (screen.o):
ops.o src/ops.s:51
_isprint (isprint.o):
ops.o src/ops.s:73
_kbhit (kbhit.o):
dc.o src/dc.s:32
_linebuffer (ops.o):
dir.o src/dir.s:36
dc.o src/dc.s:71
_linebuffer2 (ops.o):
dir.o src/dir.s:37
dc.o src/dc.s:73
_ltoa (ltoa.o):
_printf.o common/_printf.s:12
_main (ops.o):
callmain.o runtime/callmain.s:11
_mainLoop (dc.o):
ops.o src/ops.s:26
_malloc (malloc.o):
calloc.o common/calloc.s:10
dc.o src/dc.s:20
_memcpy (memcpy.o):
vsnprintf.o common/vsnprintf.s:10
dir.o src/dir.s:18
dc.o src/dc.s:18
_memset (memset.o):
dc.o src/dc.s:19
_newscreen (screen.o):
ops.o src/ops.s:49
dc.o src/dc.s:25
_printDir (ops.o):
dc.o src/dc.s:59
_printElement (ops.o):
dc.o src/dc.s:60
_raise (raise.o):
_afailed.o ../libwrk/c64/_afailed.s:13
_readDir (dir.o):
ops.o src/ops.s:19
dc.o src/dc.s:49
_refreshDir (ops.o):
dc.o src/dc.s:58
_revers (revers.o):
ops.o src/ops.s:63
base.o src/base.s:16
dir.o src/dir.s:29
screen.o src/screen.s:17
dc.o src/dc.s:42
_showDir (ops.o):
dc.o src/dc.s:56
_sprintf (sprintf.o):
ops.o src/ops.s:66
dc.o src/dc.s:14
_stderr (_file.o):