summaryrefslogtreecommitdiff
path: root/ddt180.z80
blob: 220c07485a3b105a066155cea4dba57345ffae43 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
; Disassembled ddtz.com, version "DDT/Z    [8101]"
; with modified relocater.
;
; Build steps:
;   - Assemble to a .REL file with M80 or a compatible assembler.
;   - Use Digital Research Link-80 to generate a .PRL file (op switch).
;   - Cut the .PRL header (first 256 byte) end rename the result to DDTZ.COM.

;-------------------------------------------------------------------------------
; Relocation loader
;
TPA	equ	0100h
	cseg
	.phase	TPA

	jp	start
	ds	3

ldr_end:
ldr_size	equ	$ - TPA
current_phase	defl	$

	.dephase
current_cseg	defl	$

;-------------------------------------------------------------------------------
; DDT/Z core
;

; Some greneral definitions

TAB		equ	9
LF		equ	10
CR		equ	13

; CP/M memory layout

BDOS		equ	5
dfcb1		equ	05ch
dfcb2		equ	06ch
DMA_BUF		equ	080h
TPA		equ	0100h

; BDOS function calls

BDOS_CIN	equ	1	;Console Input
BDOS_COUT	equ	2       ;Console Output
BDOS_PSTR	equ	9       ;Print String
BDOS_CBUF	equ	10      ;Read Console Buffer
BDOS_CSTAT	equ	11      ;Get Console Status
BDOS_OPEN	equ	15      ;Open File
BDOS_CLOSE	equ	16      ;Close File
BDOS_DELETE	equ	19      ;Delete File
BDOS_READ	equ	20      ;Read Sequential
BDOS_WRITE	equ	21      ;Write Sequential
BDOS_CREATE	equ	22      ;Make File
BDOS_SETDMA	equ	26      ;Set DMA Address

; ddtz specific definitions

STACK_SIZE	equ	80	;ddtz internal stack
CONBUF_SIZE	equ	80	;Size of console input buffer
EXPR_BUF_SIZE	equ	128	;expressen buffer for conditional breakpoints
BP_CNT		equ	12	;Number of breakpoints
BP_SIZE		equ	8	;Size of a breakpoint record
YREG_CNT	equ	10	;Number of Y registers (0..9)

SYMCASE_SENS	equ	0	;Symbols are case sensitive
SYMCASE_CONV	equ	1	;Convert case when symbols are loaded
SYMCASE_LOWER	equ	2	;Convert to lower case if set, else to upper case

;-------------------------------------------------------------------------------

ddtz_base:
	jp ddtz_bdos
l0003h:
	rst 30h
di_or_ei:
	nop
	ret
ddtz_bdos:
	jp	0
screen_width:
	db	80
symlen_max:
	db	16

symattrib:
	db	0


current_cseg	defl	$ - current_cseg
	.phase	current_phase + current_cseg
signon:
	db	'Symbolic DDTZ/180'
	db	' - Version '
	maclib	version.inc
	defvers
	db	CR,LF,'$'
msgz80:
	db	'Z80 or better required!',cr,lf,'$'

current_phase	defl	$
	.dephase
current_cseg	defl	$
	ds	STACK_SIZE - (current_phase - signon)


stack:
reg.l2:	db	000h
reg.h2:	db	000h
reg.e2:	db	000h
reg.d2:	db	000h
reg.c2:	db	000h
reg.b2:	db	000h
reg.f2:	db	000h
reg.a2:	db	000h
l004eh:	db	000h
reg.i:	db	000h
reg.iy:	dw	0000h
reg.ix:	dw	0000h
reg.f:	db	000h
reg.a:	db	000h
reg.c:	db	000h
reg.b:	db	000h
reg.e:	db	000h
reg.d:	db	000h
reg.l:	db	000h
reg.h:	db	000h
reg_sp:	dw	TPA
reg.iff:
	db	0f3h
	db	0c3h
reg.pc:	dw	TPA
var.$:	dw	0000h
var.@:	dw	0

error_func:dw	p_msg_error
cmd_rpt:dw	mainloop

;-------------------------------------------------------------------------------

conbuf:
	db	CONBUF_SIZE

	ld sp,stack
	exx
	ld de,ddtz_base
	or a
	sbc hl,de
	add hl,de
	jr c,l0079h
	ex de,hl
l0079h:
	ld de,TPA
l007ch:
	dec hl
	ld (hl),000h
	ld a,h
	sub d
	ld b,a
	ld a,l
	sub e
	or b
	jr nz,l007ch
	ld a,i
	ld (reg.i),a
	ld a,0f3h
	jp po,l0093h
	ld a,0fbh
l0093h:
	ld (reg.iff),a
	call di_or_ei
	ld hl,ddtz_base
	ld l,000h
	ld (reg_sp),hl
	call cpy_fcb2
	ld a,(dfcb1+1)
	cp ' '
	ld hl,0
	call nz,read_file
	jr mainloop

	ds	CONBUF_SIZE + 3 - ($ - conbuf)

;-------------------------------------------------------------------------------

CMDTAB:
	dw	cmd_@		;examine/substitute the displacement register @
	dw	cmd_A		;Assemble
	dw	cmd_B		;Breakpoints display/set/clear
	dw	cmd_C		;trace over Calls
	dw	cmd_D		;Display memory in hex and ascii
	dw	ERROR		;
	dw	cmd_F		;specify Filename and command line
	dw	cmd_G		;Go
	dw	cmd_H		;compute Hex and other expressions
	dw	cmd_I		;Input a byte from port
	dw	ERROR		;
	dw	ERROR		;
	dw	cmd_L		;List disassembled code
	dw	cmd_M		;Move memory [and verify]
	dw	ERROR		;
	dw	cmd_O		;Output a byte to port
	dw	ERROR		;
	dw	cmd_Q		;Qery memory for byte string
	dw	cmd_R		;Read binary or hex file and/or symbol file
	dw	cmd_S		;Substitute memory
	dw	cmd_T		;Trace
	dw	ERROR		;
	dw	cmd_V		;Verify (compare) two memory areas
	dw	cmd_W		;Write a file to disk
	dw	cmd_X		;eXamine [and substitute] registers
	dw	cmd_Y		;examine [and substitute] Y variables
	dw	cmd_Z		;Zap (fill) memory with a byte string

mainloop:
	ld sp,stack
	ld hl,p_msg_error
	ld (error_func),hl
	ld hl,(reg.pc)
	ld (var.$),hl
	call bp_clr_temporary
	ld hl,(cmd_rpt)
	ld de,mainloop
	call cp_hl_de
	ld a,'>'
	call outchar
	call nz,outchar
	call z,outbl
	call get_line
	call skipbl
	jr z,exe_hl
	ld hl,mainloop
	ld (cmd_rpt),hl
	inc de
	sub '@'
	jr c,ERROR
	cp 'Z'+1-'@'
	jr nc,ERROR
	add a,a
	ld hl,CMDTAB
	call add_hl_a
	ld a,(hl)
	inc hl
	ld h,(hl)
	ld l,a
	jr exe_hl

ERROR:
	ld hl,(error_func)
exe_hl:
	call CALL_HL
	jr mainloop

;-------------------------------------------------------------------------------

p_msg_error:
	call	pstr_inl
	dc	'?'
	;fall thru
crlf:
	call	pstr_inl
	db	CR,LF+80h
	call inchar
	ld a,0
	ld (con_col),a
	jr c,mainloop
	ret

out.hl.@:
	call out_hl
	push de
	push hl
	ld de,(var.@)
	ld a,d
	or e
	jr z,l01bfh
	call outbl
	call	pstr_inl
	dc	'@'
	and a
	sbc hl,de
	call out_hl
l01bfh:
	pop hl
	pop de
	ret

sub_01d9h:
	call	pstr_inl
	dc	'-'
	dec hl
	jp cpl.hl

out_hl_dec_neg:
	push hl
	call sub_01d9h
	defb 03eh		;ld a,..  swallow push hl
out.hl.dec:
	push hl
	ld b,006h
	call sub_01f9h
	pop hl
	call	pstr_inl
	dc	'.'
l01f3h:
	call outbl
	djnz l01f3h
	ret

sub_01f9h:
	dec b
	push de
	ld de,10
	call div_hl_de
	ld a,h
	or l
	call nz,sub_01f9h
	ld a,e
	pop de
	jr out_dgt

out_hl_neg:
	push hl
	call sub_01d9h
	call out_hl
	pop hl
	ret

out_hl:
	ld a,h
	call out_hex
	ld a,l

out_hex:
	push af
	rra
	rra
	rra
	rra
	call out_dgt
	pop af

out_dgt:
	or	0f0h
	daa
	add	a,0a0h
	adc	a,040h
	jr outchar

out.bin.w:
	ld a,h
	call out.bin.b
	ld a,l
out.bin.b:
	ld b,8
l01c9h:
	rlca
	push	af
	ld	a,'0'/2
	adc	a,a
	call	outchar
	pop af
	djnz l01c9h
	ld a,'"'
	jr outchar

out.ascii:
	push bc
	ld c,a
	res 7,a
	cp ' '
	push af
	call nc,outbl
	call outquote
	pop af
	jr nc,l0242h
	sub 0c0h
	ld b,a
	call	pstr_inl
	dc	'^'
	ld a,b
l0242h:
	call outchar
	cp ''''
	call z,outchar
	call outquote
	sla c
	pop bc
	ret nc
	ld a,'.'
	jr outchar

outbl6:
	call outbl2
outbl4:
	call outbl2
outbl2:
	call outbl
outbl:
	ld a,' '
	jr outchar

outquote:
	ld a,''''
outchar:
	push ix
	push iy
	push hl
	push de
	push bc
	push af
	and 07fh
	ld e,a
	ld c,BDOS_COUT
	call ddtz_bdos
	ld hl,con_col
	inc (hl)
	pop af
	pop bc
	pop de
	pop hl
	pop iy
	pop ix
	ret

pstr:
	ld a,(hl)
	inc hl
	and a
	ret z
	call outchar
	and a
	ret m
	jr pstr

pstr_inl:
	ex	(sp),hl
	call	pstr
	ex	(sp),hl
	ret

p_align_@_sym:
	push	de
	ld	de,(var.@)
	ld	a,d
	or	e
	pop	de
	ld	a,(symlen_cur)
	jr	z,$+4
	add	a,6
	add	a,c
	ld	c,a
p_goto_col:
	ld	a,(con_col)
	cp	c
	ret	nc
	ret	z
	call	outbl
	jr	p_goto_col

;-------------------------------------------------------------------------------

inchar:
	push ix
	push hl
	push de
	push bc
	ld c,BDOS_CSTAT
	call ddtz_bdos
	and a
	jr z,l0284h
	ld c,BDOS_CIN
	call ddtz_bdos
	scf
l0284h:
	pop bc
	pop de
	pop hl
	pop ix
	ret

get_line:
	push hl
	ld de,conbuf
	ld c,BDOS_CBUF
	call ddtz_bdos
	call crlf
	ld hl,conbuf+1
	ld	e,(hl)
	xor	a
	ld	d,a
	inc	hl
	ex	de,hl
	add	hl,de
	ld	(hl),a
	pop hl
	ret

;-------------------------------------------------------------------------------

get_char_upper:
	ld a,(de)
toupper:
	cp 'a'
	ret c
	cp 'z'+1
	ccf
	ret c
	and 05fh
	ret

tolower:
	cp 'A'
	ret c
	cp 'Z'+1
	ccf
	ret c
	or 020h
	ret

;-------------------------------------------------------------------------------

skipbl0:
	inc de
skipbl:
	call get_char_upper
	call test_whitespace
	jr z,skipbl0
	or a
	ret

next_arg:
	call skipbl
	cp ','
	ret nz
	inc de
	call skipbl
	cp a
	ret

assert_eol:
	call skipbl
	ret z
to_error:
	jp ERROR

;-------------------------------------------------------------------------------

chk_stack:
	push hl
	push de
	ld hl,0
	add hl,sp
	ld de,stack-(STACK_SIZE-28)
	call cp_hl_de
	pop de
	pop hl
	jr c,to_error
	ret

;-------------------------------------------------------------------------------

add_hl_a:
	add a,l
	ld l,a
	ret nc
	inc h
	ret

cp_hl_de:
	and a
	sbc hl,de
	add hl,de
	ret

sub_hl_a1:
	dec	hl
sub_hl_a:
	push	bc
	ld	c,a
	ld	b,0
	or	a
	sbc	hl,bc
	pop	bc
	ret

;-------------------------------------------------------------------------------

sym_getname:
	push	de
	push	hl
	ld	hl,ddtz_base+2
sgn_l:
	ld	d,(hl)
	dec	hl
	ld	e,(hl)
	dec	hl
	ld	a,(hl)
	cp	0c3h
	jr	z,sgn_e

	ex	(sp),hl
	call	cp_hl_de
	jr	z,sgn_e
	ex	(sp),hl
	call	sub_hl_a1
	jr	sgn_l
sgn_e:
	sub	0c3h
	pop	hl
	pop	de
	ret

p_symstr:
	push	bc
	ld	b,(hl)
pss_l:
	dec	hl
	ld	a,(hl)
	call	outchar
	djnz	pss_l
	dec	hl
	pop	bc
	ret

p_symbol:
  if 0
	ld	a,(dash_flag)
	or	a
	ret	nz
  endif
	push	hl
	call	sym_getname
	call	nz,p_symstr
	pop	hl
	ret

p_label:
  if 0
	ld	a,(dash_flag)
	or	a
	ret	nz
  endif
	push	hl
	call	sym_getname
	jr	z,pl_e
	call	p_symstr
	call	pstr_inl
	dc	':'
	call	crlf
pl_e:
	pop	hl
	ret

;-------------------------------------------------------------------------------

lookupch:
	ld b,0
l02f5h:
	ld a,(hl)
	and a
	ret z
	call get_char_upper
	cp (hl)
	jr z,l0300h
	inc hl
	inc b
	jr l02f5h
l0300h:
	scf
	inc de
	ret

sub_0303h:
	ld hl,t_reg_names
	ld b,07fh
	jr l030ch

sub_030ah:
	ld b,0ffh
l030ch:
	inc b
	ld a,(hl)
	and a
	ret z
	call sub_031ch
	jr nc,l030ch
	res 7,b
	ret

sub_0318h:
	push bc
	res 7,b
	defb 03eh		;ld a,nn
sub_031ch:
	push bc
	push de
l031eh:
	call get_char_upper
	xor (hl)
	and 07fh
	jr nz,l0336h
	bit 7,(hl)
	inc hl
	inc de
	jr z,l031eh
	scf
	bit 7,b
	call z,sub_060ch
	jr nc,l0339h
	pop af
	scf
	pop bc
	ret
l0336h:
	call sub_0345h
l0339h:
	pop de
	and a
	pop bc
	ret

sel_dc_string:
	inc b
l033eh:
	dec b
	ret z
	call sub_0345h
	jr l033eh

sub_0345h:
	ld a,(hl)
	and a
	ret z
l0348h:
	ld a,(hl)
	inc hl
	and a
	ret m
	jr l0348h

sub_034eh:
	call get_arg_range
	push hl
	push bc
	call next_arg
	call sub_0363h
	ex de,hl
	pop bc
	pop hl
	ret

sub_035dh:
	call expr
	jr c,error0
	ret

sub_0363h:
	call sub_035dh
l0366h:
	jp assert_eol

get_lastarg_def:
	call get_arg_def
	jr l0366h

get_arg_def:
	push hl
	call expr
	jr c,l0375h
	ex (sp),hl
l0375h:
	pop hl
	ret

sub_0377h:
	call b_037c_start
	jr l0366h

b_037c_start:
	defb 0e6h		;and a,..  clear carry
get_arg_range:
	scf
	ex af,af'
	push bc
	push hl
	call expr
	jr nc,l038ch
	ex af,af'
	jr c,error0
	ex af,af'
	pop hl
	defb 03eh		;ld a,..  swallow pop af
l038ch:
	pop af
	call get_range
	jr nc,l0398h
	ex af,af'
	pop bc
	ret nc
error0:
	jp ERROR
l0398h:
	pop af
	ret

get_range:
	call next_arg
	cp 'S'
	jr nz,l03a2h
	inc de
l03a2h:
	push hl
	push af			;'S' flag
	call expr
	jr c,l03b8h
	ld b,h
	ld c,l
	pop af
	pop hl
	jr z,l03b6h		;'S'?
	ld a,c
	sub l
	ld c,a
	ld a,b
	sbc a,h
	ld b,a
	inc bc
l03b6h:
	and a
	ret
l03b8h:
	pop af
	pop hl
	jr z,error0		;'S', but no expression following
	scf
	ret

;-------------------------------------------------------------------------------

expr:
	call skipbl
expr1:
	call do_subexpr
	ret c
	call do_rel_op
	ret nc
	push bc
	push hl
	call do_subexpr
	jr c,error0
	ex de,hl
	ex (sp),hl
	and a
	sbc hl,de
	ld hl,0ffffh
	pop de
	ret

;-------------------------------------------------------------------------------

do_op_eq:
	jr z,l03edh
	jr l03ech
do_op_ne:
	jr nz,l03edh
	jr l03ech
do_op_le:
	jr z,l03edh
do_op_lt:
	jr c,l03edh
	jr l03ech
do_op_gt:
	jr z,l03ech
do_op_ge:
	jr nc,l03edh
l03ech:
	inc hl
l03edh:
	and a
	ret
do_rel_op:
	push hl
	ld hl,tab_eq_le_ge
	call lookupch
	jr nc,l041dh
	ld a,b
	or a
	jr z,l0411h
	ld a,(de)
	cp '='
	jr nz,l0406h
	inc de
	inc b
	inc b
	jr l0411h
l0406h:
	bit 0,b
	jr z,l0411h
	cp '>'
	jr nz,l0411h
	inc de
	ld b,005h
l0411h:
	ld hl,tab_func_eqlege
	ld a,b
	add a,a
	call add_hl_a
	ld c,(hl)
	inc hl
	ld b,(hl)
	scf
l041dh:
	pop hl
	ret

tab_eq_le_ge:
	db	'=<>',0

tab_func_eqlege:
	dw	do_op_eq
	dw	do_op_lt
	dw	do_op_gt
	dw	do_op_le
	dw	do_op_ge
	dw	do_op_ne

do_subexpr:
	call do_factor
	ret c
l0433h:
	call do_binary_op
	push hl
	push bc
	call do_factor
	pop bc
	ex de,hl
	ex (sp),hl
	jr nc,l0447h
	pop de
	ld a,b
	or c
	ret z
	jp ERROR

l0447h:
	ld a,b
	or c
	push bc
	ret nz
	pop bc

doop_add:
	add hl,de
l044dh:
	pop de
	jr l0433h

doop_sub:
	and a
	sbc hl,de
	jr l044dh

doop_mlt:
	push bc
	ld b,h
	ld c,l
	ld hl,0
	ld a,010h
l045dh:
	add hl,hl
	ex de,hl
	add hl,hl
	ex de,hl
	jr nc,l0464h
	add hl,bc
l0464h:
	dec a
	jr nz,l045dh
	pop bc
	jr l044dh

doop_div:
	call div_hl_de
	jr l044dh

doop_mod:
	call div_hl_de
	ex de,hl
	jr l044dh

; divide x/y
;     hl: x
;     de: y
;   return:
;     hl: q  (x/y)
;     de: r  (x%y)

div_hl_de:
	push	bc
	ex	de,hl		;de: x
	ld	b,h		;bc: y
	ld	c,l
	ld	hl,0		;hl: r
	ld	a,16

;  de: x   (x shifted out, q shifted in)
;  bc: y
;  hl: r   (initially 0)

div_lp:
	ex	de,hl
	add	hl,hl		;x <<= 1
	ex	de,hl
	adc	hl,hl		;r <<= 1
	inc	de
	or	a
	sbc	hl,bc
	jr 	nc,div_norestore
	dec	de
	add	hl,bc
div_norestore:
	dec	a
	jr	nz,div_lp
	ex	de,hl
	pop	bc
	ret

doop_and:
	ld a,h
	and d
	ld h,a
	ld a,l
	and e
	ld l,a
	jr l044dh

doop_or:
	ld a,h
	or d
	ld h,a
	ld a,l
	or e
	ld l,a
	jr l044dh

doop_xor:
	ld a,h
	xor d
	ld h,a
	ld a,l
	xor e
	ld l,a
	jr l044dh

do_binary_op:
	push hl
	ld hl,tab_op_a
	call lookupch
	ld a,b
	ld hl,tblf_opa
	add a,a
	call add_hl_a
	ld c,(hl)
	inc hl
	ld b,(hl)
	pop hl
	ret

tab_op_a:
	DB	'+-*/%&!#',0

tblf_opa:
	dw	doop_add
	dw	doop_sub
	dw	doop_mlt
	dw	doop_div
	dw	doop_mod
	dw	doop_and
	dw	doop_or
	dw	doop_xor
	dw	0

;-------------------------------------------------------------------------------

fact_factor:
	call do_factor
	ret nc
	jp ERROR

do_factor:
	call chk_stack
	call get.number
	ret nc
	inc de
	ld hl,(BDOS+1)
	cp 'T'
	ret z
	ld hl,(high_load)
	cp 'H'
	ret z
	ld hl,(max_load)
	cp 'M'
	ret z
	ld hl,TPA
	cp 'L'
	ret z
	ld hl,(var.@)
	cp '@'
	ret z
	ld hl,(var.$)
	cp '$'
	ret z
	ld hl,ddtz_base
	cp 'Z'
	ret z
	cp '-'
	jr z,fact_factneg
	cp '~'
	jr z,fact_factinv
	cp '+'
	jr z,fact_factor
	cp '^'
	jr z,fact_reg.CPU
	cp 'Y'
	jr z,fact_reg.Y
	cp '('
	jr z,fact_mem
	cp '['
	jr z,expr_brckt
	cp ''''
	jr z,fact_factstring
	cp '.'
	jr z,fact_symbol
	dec de
	scf
	ret

;-------------------------------------------------------------------------------

fact_reg.Y:
	call get.decdigit
	jr c,error1
	inc de
get_y_val:
	add a,a
	ld hl,reg_Y
	call add_hl_a
	ld a,(hl)
	inc hl
	ld h,(hl)
	ld l,a
	and a
	ret

fact_factstring:
	ld hl,0
l054bh:
	ld a,(de)
	cp ''''
	jr z,l0557h
	and a
	ret z
l0552h:
	ld h,l
	ld l,a
	inc de
	jr l054bh
l0557h:
	inc de
	ld a,(de)
	cp ''''
	jr z,l0552h
	sub '.'
	or a
	ret nz
	inc de
	set 7,l
	ret

fact_reg.CPU:
	call sub_0caeh
	jr nc,error1
	ld a,(hl)
	inc hl
	ld h,(hl)
	ld l,a
	and a
	bit 0,c
	ret nz
	ld h,000h
	ret

fact_factneg:
	call fact_factor
	dec hl
cpl.hl:
	ld a,h
	cpl
	ld h,a
	ld a,l
	cpl
	ld l,a
	ret

fact_factinv:
	call fact_factor
	jr cpl.hl

fact_mem:
	call expr1
	jr c,error1
	ld a,(de)
	cp ')'
	jr nz,error1
	inc de
	ld a,(hl)
	inc hl
	ld h,(hl)
	ld l,a
	ld a,(de)
	inc de
	cp '.'
	ret z
	dec de
	xor a
	ld h,a
	ret

expr_brckt:
	call expr1
	jr c,error1
	ld a,(de)
	cp ']'
	inc de
	ret z
error1:
	jp ERROR

fact_symbol:
	push	bc
	ld	hl,ddtz_base		;symtbl start
	ld	a,(symattrib)
	ld	c,07fh
	rra
	jr	c,fs_nxtsym
	res	5,c

fs_nxtsym:
	ld	a,(hl)			;symlen
	cp	0c3h
	jr	z,error1
	ld	b,a			;symlen
	inc	b
	push	hl			;symtbl ptr
	push	de			;inpsym ptr
fs_nxtchar:
	ld	a,(de)
	djnz	fs_3
	call	test_sym_char
	jr	z,fs_cont
	pop	hl			;inpsym ptr (discard)
	inc	de
	cp	a,':'
	jr	z,fs_cont_1
	dec	de

	pop	hl			;symtbl ptr
	inc	hl
	ld	a,(hl)			;symval h
	inc	hl
	ld	h,(hl)			;symval l
	ld	l,a
	or	a			;clear carry
	pop	bc
	ret

fs_3:
	inc	de
	dec	hl
	xor	(hl)
	and	c
	jr	z,fs_nxtchar
fs_cont:				;start over
	pop	de			;inpsym ptr
fs_cont_1:
	pop	hl			;symtbl ptr
	ld	a,(hl)
	add	a,3
	call	sub_hl_a
	jr	fs_nxtsym

;-------------------------------------------------------------------------------

get.number:
	call get.hexdigit
	ret c
	push de
test_number:
	inc de
	call get.hexdigit
	jr nc,test_number
	pop de
	cp '.'
	jr z,get_dec_number
	cp '"'
	jr z,get_bin_number
	ld hl,0
next_hexdigit:
	call get.hexdigit
	jr c,hexnum_done
	add hl,hl
	add hl,hl
	add hl,hl
	add hl,hl
	call add_hl_a
	inc de
	jr next_hexdigit

hexnum_done:
	xor 'H'
	ret nz
	inc de
	ret

get_bin_number:
	ld hl,0
next_bindigit:
	call get.bindigit
l05dbh:
	inc de
	jr c,l05e4h
	add hl,hl
	call add_hl_a
	jr next_bindigit
l05e4h:
	cp '"'
	jr nz,error11
	call get.bindigit
	jr nc,l05dbh
	or a
	ret

get_dec_number:
	ld hl,0
next_decdigit:
	call get.decdigit
	inc de
	jr c,decnum_done
	push bc
	add hl,hl
	ld b,h
	ld c,l
	add hl,hl
	add hl,hl
	add hl,bc
	pop bc
	call add_hl_a
	jr next_decdigit
decnum_done:
	cp '.'
	ret z
error11:
	jp ERROR

sub_060ch:
	call get_char_upper
	cp 'Z'+1
	jr l0614h

get.hexdigit:
	ld a,(de)
hex_digit:
	call toupper
	cp 'F'+1
l0614h:
	ccf
	ret c
	cp 'A'
	jr c,l061eh
	sub 'A'-10
	ret

get.decdigit:
	call get_char_upper
l061eh:
	cp '9'+1
	jr l0625h

get.bindigit:
	call get_char_upper
	cp '1'+1
l0625h:
	ccf
	ret c
	cp '0'
	ret c
	sub '0'
	ret

;-------------------------------------------------------------------------------

p_cpustat0:
	call assert_eol
p_cpustat:
	call p_f
	call outbl2
	ld hl,b_06e9_start
	ld de,b_0709_start
	ld b,6
l063eh:
	call p_regs
	djnz l063eh
	push hl
	push de
	ld iy,(reg.pc)
	call p_disas_instr
	pop de
	ex (sp),hl
	push af
	call crlf
	call p_f2
	call outbl2
	ld b,7
l065bh:
	call p_regs
	djnz l065bh
	pop af
	pop hl
	call nz,outbl6
	call nz,p_offset
	jp crlf

p_f:
	ld a,(reg.f)
	call p_flags
	ld a,(reg.iff)
	cp 0f3h
	jp z,outbl
	ld a,'E'
	jp outchar
p_f2:
	ld a,(reg.f2)
	call p_flags
	jp outbl

p_flags:
	push	hl
	ld	hl,t_flag_names+7
	ld	c,a
	ld	b,8
fl_loop:
	ld	a,' '
	cp	(hl)
	ld	a,c
	rlca
	ld	c,a
	jr	z,fl_skip
	ld	a,(hl)
	call	c,outchar
	call	nc,outbl
fl_skip:
	dec	hl
	djnz	fl_loop
	pop	hl
	ret

p_regs:
	push de
	call pstr
	call	pstr_inl
	dc	'='
	ex (sp),hl
	ld e,(hl)
	inc hl
	ld d,(hl)
	inc hl
	ld a,(hl)
	inc hl
	push hl
	and a
	jr z,l06deh
	ex de,hl
	ld e,(hl)
	inc hl
	ld d,(hl)
	ex de,hl
	dec a
	jr z,l06d9h
	call out.hl.@
	call z,outbl6
	jr l06e2h
l06d9h:
	call out_hl
	jr l06e2h
l06deh:
	ld a,(de)
	call out_hex
l06e2h:
	call outbl
	pop de
	pop hl
	ret

b_06e9_start:
	DC	'A '
	DC	'BC '
	DC	'DE '
	DC	'HL '
	DC	'SP'
	DC	'PC'
	DC	'a'''
	DC	'bc'''
	DC	'de'''
	DC	'hl'''
	DC	'IX'
	DC	'IY'
	DC	'I'
	DB	0

b_0709_start:
	dw	reg.a
	db	000h
	dw	reg.c
	db	001h
	dw	reg.e
	db	001h
	dw	reg.l
	db	001h
	dw	reg_sp
	db	001h
	dw	reg.pc
	db	002h
	dw	reg.a2
	db	000h
	dw	reg.c2
	db	001h
	dw	reg.e2
	db	001h
	dw	reg.l2
	db	001h
	dw	reg.ix
	db	001h
	dw	reg.iy
	db	001h
	dw	reg.i
	db	000h
	db	000h

;-------------------------------------------------------------------------------
; > G [startaddr] [;breakp..]
;      Go [to start] [with temporary breakpoints]

cmd_G:
	sub a
	ld (trace_call_flag),a
	ld (bp_p_cpu_flag),a
	call expr
	jr c,l0740h
	ld (reg.pc),hl
l0740h:
	call skipbl
	jr z,user_go0
	cp ';'
	jp nz,ERROR
	inc de
	ld a,002h
	call bp_enter
user_go0:
	jp user_go

;-------------------------------------------------------------------------------

bpl_init:
	ld	b,BP_CNT
	ld	ix,bp_tab
	ex	(sp),hl
	ld	(pbl_loop_adr),hl
	ex	(sp),hl
	ret

bpl_next:
	ld	de,BP_SIZE
	push	af
	add	ix,de
	pop	af
	dec	b
	ret	z

	ex	(sp),hl
	ld	hl,(pbl_loop_adr)
	ex	(sp),hl
	ret

bp_clr_temporary:
	call	bpl_init

	ld a,(ix+000h)
	and 0f1h
	ld (ix+000h),a
	call bp_clr_condition

	call bpl_next
	ret

;-------------------------------------------------------------------------------
; > B
;      display all breakpoints
; > B breakp [breakp..]
;      set breakpoints
; > BX
;      clear all breakpoints
; > BX address [address..]
;      clear breakpoints
;
; where breakp is:
;      [R] expression [I condition]

cmd_B:
	call skipbl
	jr z,bp_print
	inc de
	cp 'X'
	jr z,bp_clr0
	dec de
	ld a,001h
	jp bp_enter

bp_clr0:
	call skipbl
	jr z,bp_clr_all
bp_clr_next:
	call expr
	jp c,assert_eol
	push de
	call bp_clr
	pop de
	call next_arg
	jr bp_clr_next

bp_clr_all:
	scf
bp_clr:
	call	bpl_init

	push af
	jr c,l07a7h
	ld e,(ix+002h)
	ld d,(ix+003h)
	call cp_hl_de
	jr nz,l07aeh
l07a7h:
	ld (ix+000h),000h
	call bp_clr_condition
l07aeh:
	pop af
	call bpl_next
	ret

bp_print:
	call	bpl_init

	bit 0,(ix+000h)
	jr z,bp_pr_cont
	ld a,'R'
	bit 4,(ix+000h)
	jr nz,l07cdh
	ld a,' '
l07cdh:
	call outchar
	call outbl
	ld l,(ix+002h)
	ld h,(ix+003h)
	call out.hl.@
	call	outbl
	call	p_symbol
	ld	c,9
	call	p_align_@_sym
	call 	pstr_inl
	dc	':'
	ld l,(ix+004h)
	ld h,(ix+005h)
	call out_hl
	ld l,(ix+006h)
	ld h,(ix+007h)
	ld a,h
	or l
	jr z,l0805h
	call outbl4
	call	pstr_inl
	dc	'I  '
	call pstr
l0805h:
	call crlf
bp_pr_cont:
	call bpl_next
	ret

;-------------------------------------------------------------------------------
; Add break points to list
;   A = 1	 Permanent (B command)
;   A = 2	 Temporary (G command)

bp_enter:
	ld b,a
	call skipbl
	ret z
	cp 'R'
	jr nz,bp_e_1
	inc de
	set 4,b
bp_e_1:
	push bc
	call expr
	jr c,error12
	pop bc
	bit 0,b
	push bc
	push de
	push hl
	call nz,bp_clr
	pop hl
	call bp_get_freeslot
	pop de
	ld (ix+002h),l
	ld (ix+003h),h
	call bp_get_count
	ld (ix+004h),l
	ld (ix+005h),h
	call bp_get_condition
	ld (ix+006h),l
	ld (ix+007h),h
	call next_arg
	pop af
	ld (ix+000h),a
	and 00fh
	jr bp_enter

bp_get_freeslot:
	call	bpl_init

	ld a,(ix+000h)
	and 00fh
	ret z

	call	bpl_next
error12
	jp ERROR

bp_get_count:
	call skipbl
	ld hl,1
	cp ':'
	ret nz
	inc de
	call expr
	jr c,error12
	ret

bp_get_condition:
	call skipbl
	cp 'I'
	ld hl,0
	ret nz
	inc de
	call skipbl
	push de
	call expr
	jr c,error12
	ex de,hl
	pop de
	push de
	sbc hl,de
	ld b,h
	ld c,l
	ld hl,(expr_p1)
	push hl
	add hl,bc
	ld de,expr_bufe
	call cp_hl_de
	jr nc,error12
	pop	de
	pop	hl
	push	de
	ldir
	ex de,hl
	ld (hl),c		; trailing 0
	inc hl
	ld (expr_p1),hl
	pop	hl
	ret

;-------------------------------------------------------------------------------
; Breakpoint handling routine.

bpddtz:
	ld (reg.l),hl
	pop hl
	dec hl
	ld (reg.pc),hl
	ld (reg_sp),sp
	ld sp,reg.l
	push de
	push bc
	push af
	push ix
	push iy
	ld a,i
	call di_or_ei
	ld h,a
	ld l,000h
	push hl
	ld a,0f3h		; EI
	jp po,l08dfh
	ld a,0fbh		; DI
l08dfh:
	ld (reg.iff),a
	ex af,af'
	push af
	exx
	push bc
	push de
	push hl
	call bp_restore_mem
	ld a,(b_21e2_start)
	dec a
	jr z,l090bh
	call inchar		;Keyboard hit?
	jr c,do_break		;yes
	call sub_0913h
	and a
	jp z,user_go
	and 083h
	jp z,l2151h
do_break:
	call bp_clr_temporary
	call p_cpustat
	jp mainloop

l090bh:
	ld (b_21e2_start),a
	ld c,007h
	jp l0a41h

sub_0913h:
	ld a,080h
	ex af,af'
	sub a
	ld (bp_p_cpu_flag),a
	call	bpl_init

	ld a,(ix+000h)
	and 007h
	jr z,l0938h
	ld e,(ix+002h)
	ld d,(ix+003h)
	ld hl,(reg.pc)
	call cp_hl_de
	push bc
	call z,sub_0942h
	pop bc
l0938h:

	call	bpl_next
	ex af,af'
	ret

sub_0942h:
	ex af,af'
	res 7,a
	ex af,af'
	ld e,(ix+006h)
	ld d,(ix+007h)
	ld a,d
	or e
	ld hl,0ffffh
	call nz,expr
	ld a,h
	or l
	jr z,l0969h
	ld e,(ix+004h)
	ld d,(ix+005h)
	dec de
	ld a,d
	or e
	jr z,l0974h
	ld (ix+004h),e
	ld (ix+005h),d
l0969h:
	bit 4,(ix+000h)
	ret z
	ld a,001h
	ld (bp_p_cpu_flag),a
	ret
l0974h:
	ex af,af'
	or (ix+000h)
	ex af,af'
	ret

bp_restore_mem:
	call	bpl_init

	bit 5,(ix+000h)
	res 5,(ix+000h)
	jr z,l099ah
	ld l,(ix+002h)
	ld h,(ix+003h)
	ld a,(l0003h)
	cp (hl)
	jr nz,l099ah
	ld a,(ix+001h)
	ld (hl),a
l099ah:
	res 3,(ix+000h)

	call	bpl_next
	ret

bp_tst_@pc:
	call	bpl_init

	ld a,(ix+000h)
	and 003h
	jr z,bp_tst_e
	ld e,(ix+002h)
	ld d,(ix+003h)
	ld hl,(reg.pc)
	call cp_hl_de
	ret z
bp_tst_e:
	call	bpl_next
	sub a
	inc a
	ret

bp_trace_enter:
	call bp_get_freeslot
	ld (ix+004h),001h
	ld (ix+005h),000h
	ld (ix+002h),l
	ld (ix+003h),h
	ld (ix+006h),000h
	ld (ix+007h),000h
	ld a,(b_21e2_start)
	and a
	ld a,008h
	jr nz,bp_t_e
	rra
bp_t_e:
	ld (ix+000h),a
	ret

bp_set_to_mem:
	call	bpl_init

	ld a,(ix+000h)
	and c
	jr z,l0a1dh
	set 5,(ix+000h)
	ld l,(ix+002h)
	ld h,(ix+003h)
	ld a,(hl)
	ld (ix+001h),a
	ld a,(l0003h)
	ld (hl),a
	and 038h
	ld h,000h
	ld l,a
	ld (hl),0c3h
	inc hl
	ld de,bpddtz
	ld (hl),e
	inc hl
	ld (hl),d
l0a1dh:

	call	bpl_next
	ret

;-------------------------------------------------------------------------------

user_go:
	sub a
	ld (b_21e2_start),a
	ld a,(bp_p_cpu_flag)
	and a
	call nz,p_cpustat
	call bp_tst_@pc
	ld c,007h
	jr nz,l0a41h
	ld a,001h
	ld (b_21e2_start),a
	call tc_set_bp
	ld c,008h
l0a41h:
	call bp_set_to_mem
	ld sp,reg.l2
	pop hl
	pop de
	pop bc
	pop af
	exx
	ex af,af'
	pop af
	ld i,a
	pop iy
	pop ix
	pop af
	pop bc
	pop de
	pop hl
	ld sp,(reg_sp)
	jp reg.iff

;-------------------------------------------------------------------------------

bp_clr_condition:
	ld a,(ix+000h)
	and 003h
	ret nz
	ld e,(ix+006h)
	ld d,(ix+007h)
	ld a,d
	or e
	ret z
	push bc
	ld h,d
	ld l,e
	sub a
	ld (ix+006h),a
	ld (ix+007h),a
	ld bc,0ffffh
	cpir
l0a7dh:
	push de
	ld de,(expr_p1)
	call cp_hl_de
	pop de
	jr nc,l0a93h
	call sub_0a99h
l0a8bh:
	ld a,(hl)
	ldi
	and a
	jr nz,l0a8bh
	jr l0a7dh
l0a93h:
	ld (expr_p1),de
	pop bc
	ret

sub_0a99h:
	ld iy,bp_tab
	push de
l0a9eh:
	ld e,(iy+006h)
	ld d,(iy+007h)
	call cp_hl_de
	jr z,l0ab0h
	ld de,BP_SIZE
	add iy,de
	jr l0a9eh
l0ab0h:
	pop de
	ld (iy+006h),e
	ld (iy+007h),d
	ret

;-------------------------------------------------------------------------------
; > Y
;      examine all Y variables
; > Y[0..9]
;      examine (and substitute) an Y variable

cmd_Y:
	call get.decdigit
	jr c,l0bc3h
	inc de
	push af
	call assert_eol
	pop af
	call sub_0bdch
	jp l0c15h
l0bc3h:
	call assert_eol
	xor a
l0bc7h:
	push af
	call sub_0bdch
	call	outbl
	pop af
	push af
	call get_y_val
	call p_symbol
	pop af
	inc a
	push af
	rra
	push	af
	ld	c,11
	call	c,p_align_@_sym
	pop	af
	call 	nc,crlf
	pop af
	cp YREG_CNT
	jr c,l0bc7h
	ret

sub_0bdch:
	ld c,a
	ld b,0
	add a,'0'+080h
	ld de,msg_Y+1
	ld (de),a
	dec de
	ld hl,reg_Y
	add hl,bc
	add hl,bc
	ex de,hl
	ld c,003h
	jp l0c33h

;-------------------------------------------------------------------------------
; > X
;      eXamine (display) all cpu registers and
;      the instruction at the current program counter
; > X register
;      eXamine (and substitute) a register


cmd_X:
	call skipbl
	call sub_0caeh
	jp nc,p_cpustat0
	call assert_eol
	ld a,b
	cp 01eh
	jr z,l0c5fh
	cp 01fh
	jr z,l0c4fh
	cp 01dh
	jp z,ERROR
	ex de,hl
	ld hl,t_reg_names
	call sel_dc_string
l0c12h:
	call l0c33h
l0c15h:
	call outbl
	push de
	push bc
	call get_line
	call skipbl
	jr z,l0c30h
	call sub_0363h
	ex de,hl
	pop bc
	pop hl
	ld (hl),e
	bit 0,c
	ret z
	inc hl
	ld (hl),d
	ret
l0c30h:
	pop af
	pop hl
	ret

l0c33h:
	call pstr
	call	pstr_inl
	dc	'='
	ld a,(de)
	bit 0,c
	jp z,out_hex
	ld l,a
	inc de
	ld a,(de)
	dec de
	ld h,a
	bit 1,c
	jp z,out_hl
	jp out.hl.@

l0c4fh:
	call p_f
	ld a,0f3h
	ld (reg.iff),a
	scf
	call sub_0c6ah
	ld (reg.f),a
	ret
l0c5fh:
	call p_f2
	and a
	call sub_0c6ah
	ld (reg.f2),a
	ret

sub_0c6ah:
	push af
	call outbl
	call assert_eol
	call get_line
	pop af
	ex af,af'
	ld b,0
l0c76h:
	call skipbl
	ld a,b
	ret z
	push bc
	ld hl,t_flag_names
	call lookupch
	jp nc,ERROR
	inc	b
	xor	a
	scf
nxt_f:
	rla
	djnz	nxt_f
	pop	bc
	jr	c,l0c97h
	or	b
	ld	b,a
	jr l0c76h

l0c97h:
	ex af,af'
	jp nc,ERROR
	ex af,af'
	ld a,0fbh
	ld (reg.iff),a
	jr l0c76h

t_flag_names:
	db	'CNV H ZSE',0

sub_0caeh:
	call sub_0303h
	ret nc
	ld a,b
	add a,b
	add a,b
	ld hl,b_0cfa_start
	call add_hl_a
	ld c,(hl)
	inc hl
	ld a,(hl)
	inc hl
	ld h,(hl)
	ld l,a
	scf
	ret

t_reg_names:
	DC	'BC'''
	DC	'DE'''
	DC	'HL'''
	DC	'BC'
	DC	'DE'
	DC	'HL'
	DC	'A'''
	DC	'B'''
	DC	'C'''
	DC	'D'''
	DC	'E'''
	DC	'H'''
	DC	'L'''
	DC	'A'
	DC	'B'
	DC	'C'
	DC	'D'
	DC	'E'
	DC	'H'
	DC	'L'
	DC	'IX'
	DC	'IY'
	DC	'SP'
	DC	'PC'
	DC	'X'
	DC	'Y'
	DC	'S'
	DC	'P'
	DC	'I'
	DC	'IP'
	DC	'F'''
	DC	'F'
	DB	0

b_0cfa_start:
	db	003h
	dw	reg.c2
	db	003h
	dw	reg.e2
	db	003h
	dw	reg.l2
	db	003h
	dw	reg.c
	db	003h
	dw	reg.e
	db	003h
	dw	reg.l
	db	000h
	dw	reg.a2
	db	000h
	dw	reg.b2
	db	000h
	dw	reg.c2
	db	000h
	dw	reg.d2
	db	000h
	dw	reg.e2
	db	000h
	dw	reg.h2
	db	000h
	dw	reg.l2
	db	000h
	dw	reg.a
	db	000h
	dw	reg.b
	db	000h
	dw	reg.c
	db	000h
	dw	reg.d
	db	000h
	dw	reg.e
	db	000h
	dw	reg.h
	db	000h
	dw	reg.l
	db	003h
	dw	reg.ix
	db	003h
	dw	reg.iy
	db	003h
	dw	reg_sp
	db	003h
	dw	reg.pc
	db	003h
	dw	reg.ix
	db	003h
	dw	reg.iy
	db	003h
	dw	reg_sp
	db	003h
	dw	reg.pc
	db	000h
	dw	reg.i
	db	003h
	dw	l004eh
	db	000h
	dw	reg.f2
	db	000h
	dw	reg.f

;-------------------------------------------------------------------------------
; > S [startaddr]
;      Substitute memory

cmd_S:
	ld hl,(last_S)
	call get_lastarg_def
l0d60h:
	ld (last_S),hl
	call out.hl.@
	call outbl
	ld a,(hl)
	call out_hex
	call outbl2
	call get_line
	call skipbl
	inc hl
	jr z,l0d60h
	dec hl
	inc de
	cp '.'
	jr	nz,cmds_dash
	call get_char_upper
	or	a
	jr	nz,l0d8ah
	ret
cmds_dash:
	jp z,assert_eol
	cp '-'
	jr nz,l0d8ah
	call get_char_upper
	or a
	dec hl
	jr z,l0d60h
	inc hl
l0d8ah:
	dec de
	call sub_0ef8h
	jr l0d60h

;-------------------------------------------------------------------------------
; > @
;      examine (substitute) displacement register @

cmd_@:
	call assert_eol
	ld hl,msg_@
	ld de,var.@
	ld c,001h
	jp l0c12h

msg_@:
	dc	'@'

;-------------------------------------------------------------------------------
; >>I [port]
;      Input a byte from port

cmd_I:
	ld hl,cmd_I
	ld (cmd_rpt),hl
	ld hl,(last_I)
	call get_lastarg_def
	ld (last_I),hl
	ld b,h
	ld c,l
	in a,(c)
	push af
	call out_hex
	call outbl4
	pop af
	call out.bin.b
	jp crlf

;-------------------------------------------------------------------------------
; >>O [byte] [port]
;      Output a byte to a port

cmd_O:
	ld hl,cmd_O
	ld (cmd_rpt),hl
	ld hl,(last_O_val)
	call get_arg_def
	ld a,l
	ld (last_O_val),a
	push af
	call next_arg
	ld hl,(last_O_addr)
	call get_lastarg_def
	ld (last_O_addr),hl
	ld b,h
	ld c,l
	pop af
	out (c),a
	ret

;-------------------------------------------------------------------------------
; > Vstartaddr endaddr targetaddr
;      Verify (compare) two memory areas

cmd_V:
	call sub_034eh
l0dedh:
	push bc
	ld a,(de)
	ld b,(hl)
	cp b
	jr z,l0e10h
	ld c,a
	call out.hl.@
	call outbl
	ld a,b
	call out_hex
	call outbl2
	ld a,c
	call out_hex
	call outbl
	ex de,hl
	call out.hl.@
	ex de,hl
	call crlf
l0e10h:
	pop bc
	inc hl
	inc de
	dec bc
	ld a,b
	or c
	jr nz,l0dedh
	ret

;-------------------------------------------------------------------------------
; > M[V] startaddr endaddr destaddr
;      Move memory [and verify]

cmd_M:
	call get_char_upper
	cp 'V'
	jr nz,l0e1fh
	inc de
l0e1fh:
	push af
	call sub_034eh
	push hl
	push de
	push bc
	call cp_hl_de
	jr nc,cmdm_up
	add hl,bc
	ex de,hl
	add hl,bc
	ex de,hl
	dec hl
	dec de
	lddr
	db 01h		;swallow ldir instruction (ld bc,...)
cmdm_up:
	ldir
	pop bc
	pop de
	pop hl
	pop af
	jr z,l0dedh
	ret

;-------------------------------------------------------------------------------
; > H
;      display Highest load address of last filed loaded, Maximum "High"
;      off all loaded files, and Top address of available memory
; > HS
;      display symbol list
; > H expression
;      evaluate expression and display result in hex, decimal and other formats
; > H expression expression
;      display sum und difference of expressions

cmd_H:
	call get_char_upper
	cp 'S'
	jr z,p_sym_list

	call expr
	jp c,p_max_high0
	call next_arg
	push hl
	call expr
	push af
	call assert_eol
	pop af
	ex de,hl
	pop hl
	jr c,l0e5eh
	push hl
	push de
	add hl,de
	call l0e5eh
	pop de
	pop hl
	and a
	sbc hl,de
l0e5eh:
	call out_hl
	call outbl2
	call out_hl_neg
	call outbl4
	call out.hl.dec
	call outbl2
	call out_hl_dec_neg
	call outbl4
	call out.bin.w
	call outbl
	ld a,l
	call out.ascii
	call	outbl2
	call p_symbol
	jp crlf

p_sym_list:
	inc	de
	call	assert_eol
	ld	a,(symlen_cur)
	add	a,7
	ld	b,a
	ld	c,0
	ld	hl,ddtz_base+2
psym_nxtsym:
	ld	d,(hl)
	dec	hl
	ld	e,(hl)
	dec	hl
	ld	a,(hl)
	cp	0c3h
	jr	z,psym_e

	call	p_goto_col
	ex	de,hl
	call	out_hl
	call	outbl
	ex	de,hl
	call	p_symstr

	ld	a,c
	add	b
	ld	c,a
	ld	a,(screen_width)
	sub	b
	cp	c
	jr	nc,psym_nxtsym

	call	crlf
	ld	c,0
	jr	psym_nxtsym

psym_e:
	ld	a,c
	or	a
	ret	z
	jp	crlf


;-------------------------------------------------------------------------------
; > Q[J] startaddr endaddr bytes
;      Query memory for a byte string [Justified]

cmd_Q:
	call get_char_upper
	sub 'J'
	ld (cmd_Q_jopt),a
	jr nz,l0e8dh
	inc de
l0e8dh:
	call get_arg_range
	push bc
	push hl
	call sub_0ee6h
	pop hl
l0e96h:
	call sub_0ed7h
	jr nz,l0eb0h
	push bc
	push hl
	ld a,(cmd_Q_jopt)
	or a
	jr nz,l0ea7h
	ld bc,-8
	add hl,bc
l0ea7h:
	ld bc,16
	and a
	call sub_0f58h
	pop hl
	pop bc
l0eb0h:
	inc hl
	ex (sp),hl
	dec hl
	ld a,h
	or l
	ex (sp),hl
	jr nz,l0e96h
	pop bc
	ret

;-------------------------------------------------------------------------------
; > Z startaddr endaddr bytes
;      Zap (fill) memory with a byte string

cmd_Z:
	call get_arg_range
	push bc
	push hl
	call sub_0ee6h
	ld a,b
	pop hl
	pop bc
	push hl
	ex de,hl
l0ec7h:
	ldi
	jp po,l0ed3h
	dec a
	jr nz,l0ec7h
	pop hl
	ldir
	ret
l0ed3h:
	pop hl
	ret

sub_0ed7h:
	push	hl
	push	de
	push bc
l0edah:
	ld a,(de)
	cp (hl)
	jr nz,l0ee2h
	inc de
	inc hl
	djnz l0edah
l0ee2h:
	pop bc
	pop de
	pop hl
	ret

sub_0ee6h:
	ld hl,conbuf+1
	call sub_0ef7h
	ld de,conbuf+1
	and a
	sbc hl,de
	ld b,l
	ret nz
	jp ERROR

sub_0ef7h:
	db	0e6h		; and 037h (clear carry)
sub_0ef8h:
	scf
l0ef9h:
	push af
	call next_arg
	cp 'W'
	jr nz,l0f0eh
	inc de
	push hl
	call sub_035dh
	ex de,hl
	ex (sp),hl
	ld (hl),e
	inc hl
	ld a,d
	pop de
	jr l0f1ah
l0f0eh:
	cp ''''
	jr z,l0f1eh
	push hl
	call expr
	ld a,l
	pop hl
	jr c,l0f42h
l0f1ah:
	ld (hl),a
	inc hl
	jr l0f3ah
l0f1eh:
	inc de
	ld a,(de)
	cp ''''
	jr z,l0f2bh
	or a
	jr z,l0f42h
l0f27h:
	ld (hl),a
	inc hl
	jr l0f1eh
l0f2bh:
	inc de
	ld a,(de)
	cp ''''
	jr z,l0f27h
	cp '.'
	jr nz,l0f3ah
	inc de
	dec hl
	set 7,(hl)
	inc hl
l0f3ah:
	pop af
	jr nc,l0ef9h
	ld (last_S),hl
	jr l0ef9h
l0f42h:
	pop af
	ret nc
	ld (last_S),hl
	ret

;-------------------------------------------------------------------------------
; >>D [startaddr] [endaddr]
;      Display memory in hex and ASCII

cmd_D:
	ld hl,cmd_D
	ld (cmd_rpt),hl
	ld hl,(last_D)
	ld bc,128
	call sub_0377h
	scf
sub_0f58h:
	push bc
	push de
	push hl
	push af
l0f5ch:
	call out.hl.@
	call z,outbl2
	call outbl
	ld de,0
l0f68h:
	ld a,(hl)
	inc hl
	call out_hex
	call outbl
	dec bc
	inc e
	ld a,e
	cp 010h
	jr z,l0f80h
	and 003h
	call z,outbl
	ld a,b
	or c
	jr nz,l0f68h
l0f80h:
	call outbl
	and a
	sbc hl,de
l0f86h:
	ld a,(hl)
	call sub_0fa3h
	call outchar
	inc hl
	dec e
	jr nz,l0f86h
	pop af
	push af
	jr nc,l0f97h
	ld (last_D),hl
l0f97h:
	call crlf
	ld a,b
	or c
	jr nz,l0f5ch
	pop af
	pop hl
	pop de
	pop bc
	ret

sub_0fa3h:
	and 07fh
	cp 07fh
	jr z,l0fach
	cp ' '
	ret nc
l0fach:
	ld a,'.'
	ret

;-------------------------------------------------------------------------------
; > Fcommandline
;      specifiy filenames and command line

cmd_F:
	push de
	ld hl,DMA_BUF+1
	ld (hl),' '
	inc hl
l0fb6h:
	call get_char_upper
	ld (hl),a
	inc hl
	inc de
	and a
	jr nz,l0fb6h
	ld a,l
	sub DMA_BUF+2
	ld (DMA_BUF),a
	pop hl
	ld de,dfcb1
	call parse_filename
	ld de,dfcb2
	call parse_filename
	;fall thru

cpy_fcb2:
	ld hl,dfcb2
	ld de,fcbsym
	ld bc,16
	ldir
	ret

parse_filename:
	call sub_102ch
	push de
	push bc
	ld b,(hl)
	inc hl
	ld a,(hl)
	cp ':'
	jr nz,l0fe1h
	inc hl
	ld a,b
	sub 040h
	and 01fh
	jr l0fe3h
l0fe1h:
	dec hl
	xor a
l0fe3h:
	ld (de),a
	inc de
	ld b,8
	call sub_0ff2h
	ld b,3
	call sub_0ff2h
	pop bc
	pop de
	ret

sub_0ff2h:
	call sub_1012h
	jr z,l0ffeh
	inc hl
	ld (de),a
	inc de
	djnz sub_0ff2h
	jr l1003h
l0ffeh:
	ld a,c
l0fffh:
	ld (de),a
	inc de
	djnz l0fffh
l1003h:
	call sub_1012h
	inc hl
	jr nz,l1003h
	cp '*'
	jr z,l1003h
	cp '.'
	ret z
	dec hl
	ret

sub_1012h:
	ld a,(hl)
	ld c,' '
	and 01fh
	ret z
	ld a,(hl)
	cp ' '
	ret z
	call sub_1043h
	ret z
	cp '/'
	ret z
	cp '.'
	ret z
	ld c,'?'
	call toupper
	cp '*'
	ret

l102bh:
	inc hl
sub_102ch:
	ld a,(hl)
	cp '/'
	jr z,l103bh
	call sub_1043h
	jr z,l102bh
l1036h:
	cp ' '
	jr z,l102bh
	ret

l103bh:
	ld a,(hl)
	cp ' '+1
	jr c,l1036h
	inc hl
	jr l103bh

sub_1043h:
	cp '='
	ret z
	cp '_'
	ret z
	cp ','
	ret

;-------------------------------------------------------------------------------

setup_fcb:
	push de
	ld hl,12
	add hl,de
	xor a
	ld b,21
l1052h:
	ld (hl),a
	inc hl
	djnz l1052h
	ld de,DMA_BUF
	ld c,BDOS_SETDMA
	call ddtz_bdos
	pop de
	ret

;-------------------------------------------------------------------------------

file_open:
	ld (cur_fcb),de
	call setup_fcb
	ld c,BDOS_OPEN
	call ddtz_bdos
	inc a
	jp z,ERROR
	ld a,080h
	ld (cmdR_rindex),a
	ret

read_byte:
	ld a,(cmdR_rindex)
	cp 080h
	jr nz,l1111h
	call read_sector
	ld a,01ah
	ret z
	sub a
l1111h:
	inc a
	ld (cmdR_rindex),a
	push hl
	add a,07fh
	ld l,a
	ld h,000h
	ld a,(hl)
	pop hl
	cp 01ah
	ret

read_sector:
	push hl
	push de
	push bc
	ld de,(cur_fcb)
	ld c,BDOS_READ
	call ddtz_bdos
	sub a,1
	jr z,l1132h
	jr nc,error2
l1132h:
	pop bc
	pop de
	pop hl
	ret

cmdR_storebyte:
	push af
	push de
	ld de,TPA
	call cp_hl_de
	jr c,error2
	ld de,(BDOS+1)
	call cp_hl_de
	jr nc,error2
	ld de,(high_load)
	call cp_hl_de
	jr c,l1157h
	ld (high_load),hl
l1157h:
	ld de,(max_load)
	call cp_hl_de
	jr c,l1163h
	ld (max_load),hl
l1163h:
	pop de
	pop af
	ld (hl),a
	ret

strncmp:
	ld a,(de)
	cp (hl)
	inc de
	inc hl
	ret nz
	djnz strncmp
	ret

str_hex:
	db	'HEX'

read_hexchar:
	call read_hexdigit
	rlca
	rlca
	rlca
	rlca
	ld d,a
	call read_hexdigit
	add a,d
	ld d,a
	add a,c
	ld c,a
	ld a,d
	ret

read_hexdigit:
	call read_byte
	jr z,error2
hex_digit_v:
	call hex_digit
	ret nc
error2:
	jp ERROR

read_hexbyte:
	call	read_byte
read_hexbyte0:
	push	bc
	call	hex_digit_v
	rlca
	rlca
	rlca
	rlca
	ld	c,a
	call	read_byte
	call	hex_digit_v
	or	c
	pop	bc
	ret

;-------------------------------------------------------------------------------
; > R [displacement]
;      Read a binary or hex file and or symbol file [add displacement]

cmd_R:
	ld hl,0
	call get_lastarg_def
read_file:
	ld de,dfcb1+1
	ld a,(de)
	cp '?'
	jr z,read_symfile
	dec de
	push hl
	ld hl,0
	ld (high_load),hl
	call file_open
	ld hl,dfcb1+9
	ld de,str_hex
	ld b,3
	call strncmp
	pop hl
	jr z,read_hexfile
	ld de,TPA
	push hl
	add hl,de
l108eh:
	call read_sector
	jr nz,read_file_nxt
	pop hl
	jr read_symfile

read_file_nxt:
	ld de,DMA_BUF
	ld b,080h
l109ah:
	ld a,(de)
	call cmdR_storebyte
	inc de
	inc hl
	djnz l109ah
	jr l108eh

read_hexfile:
	push hl
l10aeh:
	call read_byte		; RECORD MARK
	jr z,rdhex_done
	cp ':'
	jr nz,l10aeh
	ld c,0
	call read_hexchar	; RECLEN
	ld b,a
	call read_hexchar	; LOAD ADDR H
	ld h,a
	call read_hexchar	; LOAD ADDR L
	ld l,a
	ld a,b
	and a
	jr z,rdhex_done
	call read_hexchar	; RECTYP
l10cch:
	call read_hexchar	; DATA
	pop de
	push de
	push hl
	add hl,de
	call cmdR_storebyte
	pop hl
	inc hl
	djnz l10cch
	call read_hexchar	; CHKSUM
	ld a,c
	and a
	jr nz,error3
	jr l10aeh
rdhex_done:
	pop hl
	jr read_symfile

read_symfile:
	ld de,fcbsym+1
	ld a,(de)
	cp ' '
	jp z,p_max_high

	push	hl		; offset
	call pstr_inl
	db	'SYMBOLS',CR,LF+80h

	dec	de
	call	file_open
	ld	a,(symattrib)
	ld	c,a
rs_1:
	call	read_byte
rs_2:
	pop	de		; offset
	cp	1ah
	jp	z,p_max_high
	push	de		; offset
	cp	'!'
	jr	c,rs_1
	call	read_hexbyte0	; symval H
	ld	h,a
	call	read_hexbyte	; symval L
	ld	l,a
	add	hl,de
	call	read_byte
	cp	' '
	jr	z,rs_4
rs_3:	call	read_byte
	cp	' '
	jr	nc,rs_3
	jr	rs_2

rs_4:
	push	hl		; symval
	ld	hl,(BDOS+1)	;
	ld	b,0		; setup symlen
rs_5:
	dec	hl		;
	call	read_byte	; next char of symbol name
	call	test_sym_char	; valid char?
	jr	nz,rs_6
	bit	SYMCASE_CONV,c
	jr	z,rs_51
	call	toupper
	bit	SYMCASE_LOWER,c
	call	nz,tolower
rs_51:
	ld	(hl),a		;
	inc	b		; symlen++
	ld	a,(symlen_max)	;
	cp	b		;
	jr	nc,rs_5		;
error3:
	jp	ERROR		;

rs_6:
	call	test_symterm_ch
	jr	nz,error3

	push	bc		; symlen
	ex	de,hl		;
	ld	hl,(BDOS+1)	;
	inc	hl		;
	ld	c,(hl)		;
	inc	hl		;
	ld	b,(hl)		;
	ex	de,hl
	ld	(hl),b		;
	dec	hl		;
	ld	(hl),c		;
	dec	hl		;
	ld	(hl),0c3h	;

	ld	de,(max_load)	;
	call	cp_hl_de	;
	jr	c,error3	;
	ld	de,(reg_sp)	;
	call	cp_hl_de	;
	jr	nc,rs_61	;
	ld	(reg_sp),hl	;
rs_61:
	ld	de,(BDOS+1)	;
	ld	(BDOS+1),hl	;
	ex	de,hl		;
	pop	bc		; symlen
	ld	(hl),b		;
	inc	hl		;
	pop	de		; symval
	ld	(hl),e		;
	inc	hl		;
	ld	(hl),d		;
	ld	a,b		;
	ld	hl,symlen_cur	;
	cp	(hl)		; new max?
	jr	c,$+3		;
	ld	(hl),a		;
	jp	rs_1		;


; test for valid character for symbols
; return z if valid

test_sym_char:
	cp	'$'
	ret	z
	cp	'%'
	ret	z
	cp	'.'
	ret	z
	cp	'_'
	ret	z
	call	test_alphanum
	ret	c		; cy == 1 --> z == 0
	cp	a		; return z
	ret


; check if char is in [0..9,?,@,A..Z,a..z]
; return cy if invalid
; return nc if valid alfanumeric char

test_alphanum:
	cp	'z'
	ret	z
	ccf
	ret	c
	cp	'a'
	ret	nc
	cp	'Z'
	ret	z
	ccf
	ret	c
	cp	'?'
	ret	nc
test_numeral:
	cp	'9'
	ret	z
	ccf
	ret	c
	cp	'0'
	ret

test_symterm_ch:
	cp	CR
	ret	z
	cp	LF
	ret	z
test_whitespace:
	cp	' '
	ret	z
	cp	TAB
	ret

;-------------------------------------------------------------------------------

p_max_high0:
	call assert_eol
p_max_high:
	call pstr_inl
	DC	'High = '
	ld hl,(high_load)
	call out_hl
	call pstr_inl
	DC	'  Max = '
	ld hl,(max_load)
	call out_hl
	call pstr_inl
	DC	'  Top = '
	ld hl,(BDOS+1)
	call out_hl
	jp crlf

;-------------------------------------------------------------------------------
; > Wstartaddr endaddr
;      Write a file to disk

cmd_W:
	call get_arg_range
	call assert_eol
	push hl
	ld a,c
	add a,07fh
	jr nc,l11adh
	inc b
l11adh:
	and 080h
	ld c,a
	push bc
	ld a,(dfcb1+1)
	cp ' '
	jr z,error4
	ld de,dfcb1
	call setup_fcb
	push de
	ld c,BDOS_DELETE
	call ddtz_bdos
	pop de
	ld c,BDOS_CREATE
	call ddtz_bdos
	inc a
	jr z,error4
	pop bc
	pop hl
l11cch:
	ld a,b
	or c
	jr z,close_file
	push bc
	ld de,080h		; DMA_BUF
	ld b,d
	ld c,e
	ldir
	call write_sector
	ex (sp),hl
	ld bc,0ff80h
	add hl,bc
	ex (sp),hl
	pop bc
	jr l11cch

write_sector:
	push hl
	ld de,dfcb1
	ld c,BDOS_WRITE
	call ddtz_bdos
	pop hl
	and a
	ret z
	call close_file
error4:
	jp ERROR

close_file:
	ld de,dfcb1
	ld c,BDOS_CLOSE
	jp ddtz_bdos

;-------------------------------------------------------------------------------
; > A [startaddr]
;      Assemble Zilog Z180 mnemonics

cmd_A:
	ld hl,(last_A)
	call get_lastarg_def
	ld (last_A),hl
	ld (cmd_A_prev),hl
	ld hl,cmda_restart
	ld (error_func),hl
	ld (l1262h),sp
cmda_loop:
	ld hl,(last_A)
	ld (var.$),hl
	push hl
	call p_disas_line
	ld c,19
	call p_align_@_sym
	ld c,b
	push bc
	call get_line
	pop bc
	pop hl
	call skipbl
	cp '.'
	ret z
	cp '-'
	jr nz,l124bh
	ld hl,(cmd_A_prev)
	jr cmda_lpend
l124bh:
	push hl
	pop iy
	push hl
	and a
	call nz,asemble_line
	ld b,0
	pop hl
	ld (cmd_A_prev),hl
	add hl,bc
cmda_lpend:
	ld (last_A),hl
	jr cmda_loop

cmda_restart:
	call p_msg_error
	ld sp,(l1262h)
	jr cmda_loop

asemble_line:
	call skipbl
	ld hl,t_MNEMONICS
	call sub_030ah
	jr nc,error4
	call skipbl
	push de
	ld a,b
	add a,b
	add a,b
	ld hl,b_1289_start
	call add_hl_a
	ld e,(hl)
	inc hl
	ld d,(hl)
	inc hl
	ld b,(hl)
	ex de,hl
	pop de

CALL_HL:
	jp (hl)

;-------------------------------------------------------------------------------

b_1289_start:
	dw	as.ADC_SBC		;ADC
	db	088h			;
	dw	as.ADD			;ADD
	db	080h			;
	dw	as.AND_CP_OR_SUB_XOR	;AND
	db	0a0h			;
	dw	as.BITOP		;BIT
	db	040h			;
	dw	as.CALL			;CALL
	db	0c4h			;
	dw	as.opc.noarg		;CCF
	db	03fh			;
	dw	as.AND_CP_OR_SUB_XOR	;CP
	db	0b8h			;
	dw	gen.opc.ED2		;CPD
	db	0a9h			;
	dw	gen.opc.ED2		;CPDR
	db	0b9h			;
	dw	gen.opc.ED2		;CPI
	db	0a1h			;
	dw	gen.opc.ED2		;CPIR
	db	0b1h			;
	dw	as.opc.noarg		;CPL
	db	02fh			;
	dw	as.opc.noarg		;DAA
	db	027h			;
	dw	as.DEC_INC		;DEC
	db	005h			;
	dw	as.opc.noarg		;DI
	db	0f3h			;
	dw	as.DJNZ			;DJNZ
	db	010h			;
	dw	as.opc.noarg		;EI
	db	0fbh			;
	dw	as.EX			;EX
	db	0e3h			;
	dw	as.opc.noarg		;EXX
	db	0d9h			;
	dw	as.opc.noarg		;HALT
	db	076h			;
	dw	as.IM			;IM
	db	046h			;
	dw	as.IN			;IN
	db	040h			;
	dw	as.DEC_INC		;INC
	db	004h			;
	dw	gen.opc.ED2		;IND
	db	0aah			;
	dw	gen.opc.ED2		;INDR
	db	0bah			;
	dw	gen.opc.ED2		;INI
	db	0a2h			;
	dw	gen.opc.ED2		;INIR
	db	0b2h			;
	dw	as.JP			;JP
	db	0c2h			;
	dw	as.JR			;JR
	db	020h			;
	dw	as.LD			;LD
	db	040h			;
	dw	gen.opc.ED2		;LDD
	db	0a8h			;
	dw	gen.opc.ED2		;LDDR
	db	0b8h			;
	dw	gen.opc.ED2		;LDI
	db	0a0h			;
	dw	gen.opc.ED2		;LDIR
	db	0b0h			;
	dw	gen.opc.ED2		;NEG
	db	044h			;
	dw	as.opc.noarg		;NOP
	db	000h			;
	dw	as.AND_CP_OR_SUB_XOR 	;OR
	db	0b0h			;
	dw	gen.opc.ED2		;OTDR
	db	0bbh			;
	dw	gen.opc.ED2		;OTIR
	db	0b3h			;
	dw	as.OUT			;OUT
	db	041h			;
	dw	gen.opc.ED2		;OUTD
	db	0abh			;
	dw	gen.opc.ED2		;OUTI
	db	0a3h			;
	dw	as.POP_PUSH		;POP
	db	0c1h			;
	dw	as.POP_PUSH		;PUSH
	db	0c5h			;
	dw	as.BITOP		;RES
	db	080h			;
	dw	as.RET			;RET
	db	0c0h			;
	dw	gen.opc.ED2		;RETI
	db	04dh			;
	dw	gen.opc.ED2		;RETN
	db	045h			;
	dw	as.SHIFTOP		;RL
	db	010h			;
	dw	as.opc.noarg		;RLA
	db	017h			;
	dw	as.SHIFTOP		;RLC
	db	000h			;
	dw	as.opc.noarg		;RLCA
	db	007h			;
	dw	gen.opc.ED2		;RLD
	db	06fh			;
	dw	as.SHIFTOP		;RR
	db	018h			;
	dw	as.opc.noarg		;RRA
	db	01fh			;
	dw	as.SHIFTOP		;RRC
	db	008h			;
	dw	as.opc.noarg		;RRCA
	db	00fh			;
	dw	gen.opc.ED2		;RRD
	db	067h			;
	dw	as.RST			;RST
	db	0c7h			;
	dw	as.ADC_SBC		;SBC
	db	098h			;
	dw	as.opc.noarg		;SCF
	db	037h			;
	dw	as.BITOP		;SET
	db	0c0h			;
	dw	as.SHIFTOP		;SLA
	db	020h			;
	dw	as.SHIFTOP		;SRA
	db	028h			;
	dw	as.SHIFTOP		;SRL
	db	038h			;
	dw	as.AND_CP_OR_SUB_XOR 	;SUB
	db	090h			;
	dw	as.AND_CP_OR_SUB_XOR 	;XOR
	db	0a8h			;

	dw	as.IN0			;IN0
	db	000h       		;
	dw	as.MLT			;MLT
	db	04ch       		;
	dw	gen.opc.ED2		;OTDM
	db	08bh       		;
	dw	gen.opc.ED2		;OTDMR
	db	09bh       		;
	dw	gen.opc.ED2		;OTIM
	db	083h       		;
	dw	gen.opc.ED2		;OTIMR
	db	093h       		;
	dw	as.OUTO    		;OUT0
	db	001h       		;
	dw	gen.opc.ED2		;SLP
	db	076h       		;
	dw	as.TST			;TST
	db	004h       		;
	dw	as.TSTIO		;TSTIO
	db	074h       		;

;-------------------------------------------------------------------------------

as.TST:
	call arg.r_HL_A		;
	jr nc,as.tst_0
	rlca
	rlca
	rlca
	add a,b
	ld b,a
	jp gen.opc.ED2
as.tst_0:
	ld b,064h
as.TSTIO:
	call arg.imm_8bit	;
	jr as.store_io0

as.IN0:
	call arg.r_HL_A		;
	jr nc,error5
	cp 006h
	jr z,error5
	rlca
	rlca
	rlca
	add a,b
	ld b,a
	call assert_comma	;
	call arg.addr_8bit	;
	jr as.store_io0

as.OUTO:
	call arg.addr_8bit	;
	call assert_comma	;
	call arg.r_HL_A		;
	jr nc,error5
	cp 006h
	jr z,error5
	rlca
	rlca
	rlca
	add a,b
	ld b,a

as.store_io0:
	call assert_eol
	ld (iy+000h),0edh
	ld (iy+001h),b
	ld (iy+002h),l
	ld c,003h
	ret

as.MLT:
	call arg.ww		;
	jr nc,error5
	add a,b
	ld b,a
	jp gen.opc.ED2

error5:
	jp ERROR

as.LD:
	call arg.r_HL_A
	jr c,l13d4h
	call arg.IDX_displcmnt
	jp c,l1471h
	call arg.ww
	jp c,l149ch
	call arg.IX_IY
	jp c,l14f5h
	call get_char_upper
	cp 'I'
	jp z,l1511h
	cp 'R'
	jp z,l1519h
	cp '('
	jr nz,error5
	inc de
	call arg.ww
	jp c,l1528h
	call test_expr
	call test_paren_close
	call assert_comma
	call arg.ww
	jr c,l13c2h
	call arg.IX_IY
	jr nc,l13aah
	ld b,022h
l1395h:
	call assert_eol
	ld a,(prefix_ixiy)
l139bh:
	ld (iy+000h),a
	ld (iy+001h),b
	ld (iy+002h),l
	ld (iy+003h),h
	ld c,004h
	ret

l13aah:
	call get_char_upper
	cp 'A'
	jr nz,error5
	inc de
	ld b,032h

as.store_3:
	call assert_eol
	ld (iy+000h),b
	ld (iy+001h),l
	ld (iy+002h),h
	ld c,003h
	ret

l13c2h:
	cp 020h
	jr z,l13d0h
	add a,043h
	ld b,a
l13c9h:
	call assert_eol
	ld a,0edh
	jr l139bh
l13d0h:
	ld b,022h
	jr as.store_3

l13d4h:
	ld b,a
	call assert_comma
	call arg.r_HL_A
	jr nc,l13f0h
	push af
	ld a,b
	rlca
	rlca
	rlca
	ld b,a
	pop af
	add a,b
	add a,040h
	cp 076h
	jr z,error60
l13ech:
	ld b,a
	jp as.opc.noarg

l13f0h:
	call arg.IDX_displcmnt
	jr nc,l1413h
	ld a,b
	rlca
	rlca
	rlca
	add a,046h
	cp 076h
	jr z,error60

l1400h:
	ld b,a
	call assert_eol
	ld (iy+001h),b
	ld (iy+002h),c
	ld a,(prefix_ixiy)
	ld (iy+000h),a
	ld c,003h
	ret

l1413h:
	call get_char_upper
	cp 'I'
	jr z,l1426h
	cp 'R'
	jr nz,l1432h
	ld a,b
	cp 007h
	jr nz,error60
	ld b,05fh
	jr l142eh

l1426h:
	ld a,b
	cp 007h
	jr nz,error60
	ld b,057h
l142eh:
	inc de
	jp gen.opc.ED2
l1432h:
	cp '('
	jr z,l144ch
	call arg.imm_8bit
	ld a,b
	rlca
	rlca
	rlca
	add a,006h
l143fh:
	ld b,a
as.store_2:
	call assert_eol
	ld (iy+000h),b
	ld (iy+001h),l
	ld c,002h
	ret
l144ch:
	inc de
	ld a,b
	cp 007h
	jr nz,error60
	call arg.ww
	jr nc,l1466h
	cp 030h
	jr nc,error60
	add a,00ah
	ld b,a
	call test_paren_close
	jp as.opc.noarg

error60:
	jp error

l1466h:
	call test_expr
	call test_paren_close
	ld b,03ah
	jp as.store_3

l1471h:
	call assert_comma
	call arg.r_HL_A
	jr nc,l1483h
	cp 006h
	jr z,error60
	add a,070h
	jp l1400h

l1483h:
	call arg.imm_8bit
	call assert_eol
	ld a,(prefix_ixiy)
	ld (iy+000h),a
	ld (iy+001h),036h
	ld (iy+002h),c
	ld (iy+003h),l
	ld c,004h
	ret
l149ch:
	ld b,a
	call assert_comma
	ld hl,t_HL.AF
	call sub_0318h
	jr c,l14c3h
	call arg.IX_IY
	jr nc,l14cch
	ld a,b
	cp 030h
	jr nz,error6
	ld b,0f9h
l14b4h:
	call assert_eol
	ld a,(prefix_ixiy)
	ld (iy+000h),a
	ld (iy+001h),b
	ld c,002h
	ret

l14c3h:
	ld a,b
	cp 030h
	jr nz,error6
	ld b,0f9h
	jr as.opc.noarg	;14ca

l14cch:
	call get_char_upper
	cp '('
	jr nz,l14e8h
	inc de
	call test_expr
	call test_paren_close
	ld a,b
	cp 020h
	jr z,l14e3h
	add a,04bh
	ld b,a
	jp l13c9h

l14e3h:
	ld b,02ah
	jp as.store_3

l14e8h:
	call test_expr
	call assert_eol
	ld a,001h
	add a,b
	ld b,a
	jp as.store_3
l14f5h:
	call assert_comma
	call get_char_upper
	cp '('
	jr nz,l1509h
	inc de
	call test_expr
	call test_paren_close
	ld b,02ah
	jp l1395h

l1509h:
	call test_expr
	ld b,021h
	jp l1395h

l1511h:
	inc de
	call assert_comma
	ld b,047h
	jr l151fh

l1519h:
	inc de
	call assert_comma
	ld b,04fh
l151fh:
	call get_char_upper
	inc de
	cp 'A'
	jr z,gen.opc.ED2
error6:
	jp ERROR

l1528h:
	cp 020h
	jr nc,error6
	add a,002h
	ld b,a
	call test_paren_close
	call assert_comma
	call get_char_upper
	cp 'A'
	jr nz,error6
	inc de
as.opc.noarg:
	call assert_eol
	ld (iy+000h),b
	ld c,001h
	ret

gen.opc.ED2:
	call assert_eol
	ld (iy+000h),0edh
	ld (iy+001h),b
	ld c,002h
	ret

as.ADC_SBC:
	ld hl,t_HL.AF
	call sub_0318h
	jr nc,as.AND_CP_OR_SUB_XOR
	call assert_comma
	call arg.ww
	jr nc,error6
	push af
	ld a,b
	cp 088h
	ld b,04ah
	jr z,l156ch
	ld b,042h
l156ch:
	pop af
	add a,b
l156eh:
	ld b,a
	jr gen.opc.ED2

as.ADD:
	ld hl,t_HL.AF
	call sub_0318h
	jr c,l159ah
	call arg.IX_IY
	jr nc,as.AND_CP_OR_SUB_XOR
	call assert_comma
	ld hl,t_BC.DE.IX.SP
	ld a,(prefix_ixiy)
	cp 0fdh
	jr nz,l158eh
	ld hl,t_BC.DE.IY.SP
l158eh:
	call arg.reg_16bit
	jr nc,error6
	add a,009h
l1596h:
	ld b,a
	jp l14b4h
l159ah:
	call assert_comma
	call arg.ww
error61nc:
	jr nc,error6
	add a,009h
	jp l13ech
as.AND_CP_OR_SUB_XOR:
	call get_char_upper
	cp 'A'
	jr nz,l15b8h
	push de
	inc de
	call next_arg
	jr z,l15b7h
	pop de
	jr l15b8h
l15b7h:
	pop af
l15b8h:
	call arg.r_HL_A
	jr c,l15cbh
	call arg.IDX_displcmnt
	jr c,l15cfh
	call arg.imm_8bit
	ld a,b
	add a,046h
	jp l143fh
l15cbh:
	add a,b
	jp l13ech
l15cfh:
	ld a,b
	add a,006h
	jp l1400h

as.SHIFTOP:
	call arg.r_HL_A
	jr c,l15fah
	call arg.IDX_displcmnt
	jr nc,error61nc
	ld a,b
	add a,006h
	ld b,a
l15e4h:
	call assert_eol
	ld a,(prefix_ixiy)
	ld (iy+000h),a
	ld (iy+001h),0cbh
	ld (iy+002h),c
	ld (iy+003h),b
	ld c,004h
	ret

l15fah:
	add a,b
l15fbh:
	ld b,a
	call assert_eol
	ld (iy+001h),b
	ld (iy+000h),0cbh
	ld c,002h
	ret

as.BITOP:
	call arg.bit
	call assert_comma
	call arg.r_HL_A
	jr c,l1624h
	call arg.IDX_displcmnt
	jr nc,error61nc
	ld a,l
	rlca
	rlca
	rlca
	add a,006h
	add a,b
	ld b,a
	jr l15e4h
l1624h:
	add a,b
	ld b,a
	ld a,l
	rlca
	rlca
	rlca
	add a,b
	jr l15fbh

as.CALL:
	push de
	call arg.cc_ZCPS
	jr nc,l163ch
	add a,b
	ld b,a
	call next_arg
	jr z,l163eh
	pop de
	push de
l163ch:
	ld b,0cdh
l163eh:
	pop af
	call test_expr
	jp as.store_3

as.RET:
	call arg.cc_ZCPS
	jr nc,l164eh
	add a,b
	ld b,a
	jr l1650h
l164eh:
	ld b,0c9h
l1650h:
	jp as.opc.noarg

as.JP:
	push de
	call arg.cc_ZCPS
	jr c,l1666h
l1659h:
	pop de
	ld hl,l168ch
	call sub_030ah
	jr c,l1674h
	ld b,0c3h
	jr l166eh

l1666h:
	add a,b
	ld b,a
	call next_arg
	jr nz,l1659h
	pop af
l166eh:
	call test_expr
	jp as.store_3
l1674h:
	call assert_eol
	ld a,b
	and a
	jr nz,l1680h
	ld b,0e9h
	jp as.opc.noarg
l1680h:
	ld b,0ddh
	dec a
	jr z,l1687h
	ld b,0fdh
l1687h:
	ld l,0e9h
	jp as.store_2

l168ch:
	DC	'(HL)'
	DC	'(IX)'
	DC	'(IY)'
	DB	0

as.DJNZ:
	call next_arg
	ld b,010h
	jr l16aeh
as.JR:
	call arg.cc_ZC
	jr c,l16a9h
	ld b,018h
	jr l16aeh
l16a9h:
	add a,b
	ld b,a
	call assert_comma
l16aeh:
	call arg.j_displ
	jp as.store_2

as.IM:
	call arg.imm_8bit
	ld a,l
	cp 003h
	jr nc,error7
	and a
	jr z,l16c7h
	ld b,056h
	cp 001h
	jr z,l16c7h
	ld b,05eh
l16c7h:
	jp gen.opc.ED2

as.RST:
	call arg.imm_8bit
	ld a,l
	push af
	add a,b
	ld b,a
	pop af
	and 0c7h
	jr nz,error7
	jp as.opc.noarg

as.POP_PUSH:
	call arg.IX_IY
	jr c,l16e7h
	call arg.zz
	jr nc,error7
	add a,b
	jp l13ech
l16e7h:
	ld a,b
	add a,020h
	jp l1596h

as.IN:
	call arg.r_HL_A
	jr nc,error7
	cp 006h
	jr z,error7
	rlca
	rlca
	rlca
	add a,b
	ld b,a
	cp 078h
	jr nz,l170fh
	call assert_comma
	call sub_171bh
	jr c,l1715h
	call arg.addr_8bit
	ld b,0dbh
	jp as.store_2
l170fh:
	call assert_comma
	call sub_171bh
l1715h:
	jp c,gen.opc.ED2
error7:
	jp ERROR

sub_171bh:
	ld hl,t__C_
	jp sub_0318h

as.OUT:
	call sub_171bh
	jr nc,l1739h
	call assert_comma
	call arg.r_HL_A
	jr nc,error7
	cp 006h
	jr z,error7
	rlca
	rlca
	rlca
	add a,b
	jp l156eh

l1739h:
	call arg.addr_8bit
	call assert_comma
	cp 'A'
	jr nz,error7
	inc de
	ld b,0d3h
	jp as.store_2

as.EX:
	ld hl,b_176d_start
	call sub_030ah
	jr nc,error7
	ld c,b
	call assert_eol
	ld b,000h
	ld hl,l178eh
	add hl,bc
	add hl,bc
	ld a,(hl)
	ld (iy+000h),a
	ld c,001h
	inc hl
	ld a,(hl)
	and a
	ret z
	ld (iy+001h),a
	ld c,002h
	ret

b_176d_start:
	DC	'AF,AF'''
l1773h:
	DC	'DE,HL'
	DC	'(SP),HL'
	DC	'(SP),IX'
	DC	'(SP),IY'
	db	0
l178eh:
	db	008h,000h
	db	0ebh,000h
	db	0e3h,000h
	db	0ddh,0e3h
	db	0fdh,0e3h

as.DEC_INC:
	call arg.IX_IY
	jr c,l17b3h
	call arg.ww
	jr c,l17bfh
	call arg.r_HL_A
	jr c,l17cch
	call arg.IDX_displcmnt
	jr nc,error8
	ld a,b
	add a,030h
	jp l1400h
l17b3h:
	ld a,b
	ld b,023h
	cp 004h
	jr z,l17bch
	ld b,02bh
l17bch:
	jp l14b4h
l17bfh:
	push af
	ld a,b
	ld b,003h
	cp 004h
	jr z,l17c9h
	ld b,00bh
l17c9h:
	pop af
	jr l17cfh
l17cch:
	rlca
	rlca
	rlca
l17cfh:
	add a,b
	jp l13ech

arg.bit:
	call arg.imm_8bit
	ld a,l
	cp 008h
	jr nc,error8
	ret

arg.j_displ:
	call test_expr
	push bc
	push iy
	pop bc
	and a
	sbc hl,bc
	dec hl
	dec hl
	pop bc
	call sub_1802h
	ld a,h
	xor l
	bit 7,a
	jr nz,error8
	ret

arg.addr_8bit:
	call get_char_upper
	cp '('
	jr nz,arg.imm_8bit
	inc de
	call arg.imm_8bit
	jp test_paren_close

arg.imm_8bit:
	call test_expr
sub_1802h:
	ld a,h
	and a
	ret z
	inc a
	ret z
	jr error8

test_expr:
	push bc
	call expr
	pop bc
	ret nc
error8:
	jp ERROR

arg.zz:
	push hl
	ld hl,t_BC.DE.HL.AF
	jr l181fh

arg.reg_16bit:
	push hl
	jr l181fh

arg.ww:
	push hl
	ld hl,t_BC.DE.HL.SP
l181fh:
	push bc
	call sub_030ah
	jr nc,l182bh
	ld a,b
	rlca
	rlca
	rlca
	rlca
	scf
l182bh:
	pop bc
	pop hl
	ret

arg.r_HL_A:
	call skipbl
	push bc
	push hl
	ld hl,t_BCDEHL_HL_A
	call sub_030ah
	ld a,b
	pop hl
	pop bc
	ret

arg.IX_IY:
	push hl
	push bc
	ld hl,t_IX.IY
	call sub_030ah
	jr nc,l1852h
	ld a,0ddh
	dec b
	jr nz,l184eh
	ld a,0fdh
l184eh:
	ld (prefix_ixiy),a
	scf
l1852h:
	pop bc
	pop hl
	ret

arg.IDX_displcmnt:
	push hl
	push bc
	call get_char_upper
	cp '('
	jr nz,l18a1h
	push de
	inc de
	ld hl,t_IX.IY
	call sub_030ah
	jr nc,l18a0h
	pop af
	ld a,0ddh
	dec b
	jr nz,l186eh
	ld a,0fdh
l186eh:
	ld (prefix_ixiy),a
	call get_char_upper
	cp '+'
	jr z,l1882h
	cp ')'
	ld hl,0
	jr z,l189ah
	cp '-'
	jr nz,error9
l1882h:
	push af
	inc de
	call arg.imm_8bit
	pop af
	cp '+'
	jr z,l1894h
	ld b,h
	ld c,l
	ld hl,0
	and a
	sbc hl,bc
l1894h:
	call get_char_upper
	cp ')'
	jr nz,error9
l189ah:
	inc de
	pop bc
	ld c,l
	pop hl
	scf
	ret
l18a0h:
	pop de
l18a1h:
	pop bc
	pop hl
	and a
	ret

arg.cc_ZCPS:
	ld hl,t_tstfl_ZCPS
	ld c,007h
	jr l18b1h

arg.cc_ZC:
	ld hl,t_tstfl_ZC
	ld c,003h
l18b1h:
	push bc
	call sub_030ah
	ld a,b
	pop bc
	ret nc
	and c
	rlca
	rlca
	rlca
	scf
	ret

assert_comma:
	call next_arg
	ret z
error9:
	jp ERROR

test_paren_close:
	call get_char_upper
	cp ')'
	jr nz,error9
	inc de
	ret

;-------------------------------------------------------------------------------
; >>L [startaddr] [endaddr]
;      List disassembled code

cmd_L:
	ld hl,cmd_L
	ld (cmd_rpt),hl
	call expr
	jr nc,l18dbh
	ld hl,(last_L)
l18dbh:
	call next_arg
	call get_range
	jr nc,l1905h
	call assert_eol
	ld b,16
l18ebh:
	push bc
	call	cmdl_p_line
	pop bc
	djnz l18ebh
	ret

l1905h:
	call assert_eol
	ld	d,h
	ld	e,l
	add	hl,bc
	ex	de,hl
l190fh:
	push	de
	call	cmdl_p_line
	pop 	de
	call	cp_hl_de
	jr	c,l190fh
	ret

;-------------------------------------------------------------------------------

cmdl_p_line:
	push	hl
	call	p_disas_line
	call	crlf
	pop	hl
	ld	c,b
	ld	b,0
	add	hl,bc
	ld	(last_L),hl
	ret

p_disas_line:
	call p_label
	call outbl2
	call out.hl.@
	call z,outbl
	call outbl
	sub a
	ld (con_col),a
	push	hl
	pop	iy
	call p_disas_instr
	ret z

	ld	c,15
	call	p_goto_col
	call	p_offset
	call	outbl
	jp	p_symbol

;-------------------------------------------------------------------------------

p_offset:
	ld de,(var.@)
	ld a,d
	or e
	ret z
	call	pstr_inl
	dc	'(@'
	and a
	sbc hl,de
	call out_hl
	add	hl,de
	jp out_rparen

;-------------------------------------------------------------------------------

p_disas_instr:
	sub a
	ld (disas_argtype),a
	call disas_get_instrlen
	jr nc,l197fh
	push	bc
	ld	a,(con_col)
	add	a,5
	ld	c,a
	call	pstr
	call	p_goto_col
	ex de,hl
	call call_hl
	pop bc
	ld a,(disas_argtype)
	ld hl,(disas_arg_16)
	or a
	scf
	ret

l197fh:
	call pstr_inl
	DC	'???'
	ld b,1
	sub a
	ret

disas_get_instrlen:
	sub a
	ld (isprefix_ixiy),a
	ld a,(iy+000h)
	cp 0edh
	jp z,disas_pfx.ED
	cp 0ddh
	jr z,l19abh
	cp 0fdh
	jr z,l19afh
sub_19a0h:
	ld a,(iy+000h)
	cp 0cbh
	jp z,disas_pfx.CB
	jp disas_nopfx
l19abh:
	ld a,1
	jr l19b1h
l19afh:
	ld a,2
l19b1h:
	ld (isprefix_ixiy),a
	call disas_pfx.DDFD
	ret nc
	push bc
	call sub_19a0h
	pop af
	add a,b
	ld b,a
	scf
	ret

;-------------------------------------------------------------------------------

disas_pfx.DDFD:
	inc iy
	ld hl,b_19ef_start
	call test_DDFD
	ld b,002h
	ret c
	ld hl,l1a0ah
	call test_DDFD
	ld b,001h
	ret c
	ld a,(iy+000h)
	cp 0cbh
	jr nz,l19edh
	ld a,(iy+002h)
	cp 036h
	ret z
	and 007h
	cp 006h
	jr nz,l19edh
	ld b,002h
	scf
	ret
l19edh:
	and a
	ret

;-------------------------------------------------------------------------------
; DD/FD 3 byte (ix+d)/(iy+d)
b_19ef_start:
	db	034h
	db	035h
	db	036h
	db	046h
	db	04eh
	db	056h
	db	05eh
	db	066h
	db	06eh
	db	070h
	db	071h
	db	072h
	db	073h
	db	074h
	db	075h
	db	077h
	db	07eh
	db	086h
	db	08eh
	db	096h
	db	09eh
	db	0a6h
	db	0aeh
	db	0b6h
	db	0beh
	db	0

; DD/FD 2 byte
l1a0ah:
	db	009h
	db	019h
	db	021h
	db	022h
	db	023h
	db	029h
	db	02ah
	db	02bh
	db	039h
	db	0e1h
	db	0e3h
	db	0e5h
	db	0e9h
	db	0f9h
	db	0

;-------------------------------------------------------------------------------

disas_pfx.ED:
	inc iy
	ld hl,b_1bc9_start
	call sub_1a72h
	ld b,2
	ret c
	ld hl,b_1bf4_start
	call lookup_opc
	ld b,2
	ret c

	ld hl,l228bh
	call lookup_opc
	ld b,3
	ret c
	ld hl,b_1c40_start
	call lookup_opc
	ld b,4
	ret

;-------------------------------------------------------------------------------

disas_pfx.CB:
	push iy
	inc iy
	ld a,(isprefix_ixiy)
	and a
	jr z,l1a42h
	inc iy
l1a42h:
	ld hl,b_1c55_start
	call lookup_opc
	pop iy
	ld b,2
	ret

;-------------------------------------------------------------------------------

disas_nopfx:
	ld hl,b_1b54_start
	call lookup_opc
	ld b,2
	ret c
	ld hl,b_1ab6_start
	call sub_1a72h
	ld b,1
	ret c
	ld hl,b_1ad1_start
	call lookup_opc
	ld b,1
	ret c
	ld hl,b_1b9b_start
	call lookup_opc
	ret nc
	ld b,3
	ret

;-------------------------------------------------------------------------------

sub_1a72h:
	ld a,(hl)
	cp 0ffh
	ret z
	cp (iy+000h)
	jr z,l1a7fh
	inc hl
	inc hl
	jr sub_1a72h
l1a7fh:
	ld de,l1c97h
	inc hl
	ld c,(hl)
	jr get_mnemonic


test_DDFD:
	ld a,(hl)
	and a
	ret z
	inc hl
	cp (iy+000h)
	jr nz,test_DDFD
	scf
	ret

lookup_opc:
	ld a,(iy+000h)
	and (hl)
	inc hl
	cp (hl)
	jr z,l1aa8h
	inc hl
	inc hl
	inc hl
	inc hl
	ld a,(hl)
	and a
	jr nz,lookup_opc
	ret

l1aa8h:
	inc hl
	ld c,(hl)
	inc hl
	ld e,(hl)
	inc hl
	ld d,(hl)
get_mnemonic:
	ld hl,t_MNEMONICS
	ld b,0
	add hl,bc
	scf
	ret

;-------------------------------------------------------------------------------
; 1 byte opcodes (no parameters)
; Format: db opcode, t_MNEMONICS-index
b_1ab6_start:
	db 076h,039h		;halt
	db 0d9h,036h		;exx
	db 0f3h,02ch		;di
	db 0fbh,032h		;ei
	db 000h,069h		;nop
	db 007h,09eh		;rlca
	db 00fh,0adh		;rrca
	db 017h,098h		;rla
	db 01fh,0a7h		;rra
	db 027h,026h		;daa
	db 02fh,023h		;cpl
	db 037h,0bah		;scf
	db 03fh,010h		;ccf
	db 0ffh


; 1 byte opcodes
; Format: db mask, match, t_MNEMONICS-index
;	  dw argument formating fuction
b_1ad1_start:
	db 0c0h,040h,056h	;ld r,r
	dw p_arg_r_r
	db 0f8h,080h,003h	;add a,r
	dw p_arg_a_r
	db 0f8h,088h,000h	;adc a,r
	dw p_arg_a_r
	db 0f8h,090h,0c9h	;sub r
	dw p_arg_rs
	db 0f8h,098h,0b7h	;sbc a,r
	dw p_arg_a_r
	db 0f8h,0a0h,006h	;and r
	dw p_arg_rs
	db 0f8h,0a8h,0cch	;xor r
	dw p_arg_rs
	db 0f8h,0b0h,06ch	;or r
	dw p_arg_rs
	db 0f8h,0b8h,013h	;cp r
	dw p_arg_rs
	db 0c7h,0c0h,08bh	;ret cc
	dw p_arg_cc
	db 0c7h,0c7h,0b4h	;rst
	dw l1c98h
	db 0ffh,0c9h,08bh	;ret
	dw l1c97h
	db 0cfh,0c1h,081h	;pop rr
	dw p_arg_zz
	db 0cfh,0c5h,084h	;push rr
	dw p_arg_zz
	db 0ffh,0e3h,034h	;ex (sp),hl
	dw l1ca0h
	db 0ffh,0e9h,052h	;jp (hl)
	dw l1caeh
	db 0ffh,0ebh,034h	;ex de,hl
	dw p_arg_ex_dehl
	db 0ffh,0f9h,056h	;ld sp,hl
	dw l1cc1h
	db 0cfh,003h,041h	;inc rr
	dw p_arg_ww
	db 0cfh,00bh,029h	;dec rr
	dw p_arg_ww
	db 0c7h,004h,041h	;inc r
	dw p_arg_r
	db 0c7h,005h,029h	;dec r
	dw p_arg_r
	db 0ffh,008h,034h	;ex af,af'
	dw p_arg_ex_afaf
	db 0cfh,009h,003h	;add hl,rr
	dw l1cd3h
	db 0efh,002h,056h	;ld (rr),a ;rr=bc,de
	dw l1cdch
	db 0efh,00ah,056h	;ld a,(rr) ;rr=bc,de
	dw l1ce5h
	db 0

; 2 byte opdodes
b_1b54_start:
	db 0c7h,006h,056h	;ld r,nn
	dw l1cfah
	db 0ffh,0c6h,003h	;add a,nn
	dw l1cf5h
	db 0ffh,0ceh,000h	;adc a,nn
	dw l1cf5h
	db 0ffh,0d6h,0c9h	;sub a,nn
	dw l1d09h
	db 0ffh,0deh,0b7h	;sbc a,nn
	dw l1cf5h
	db 0ffh,0e6h,006h	;and a,nn
	dw l1d09h
	db 0ffh,0eeh,0cch	;xor nn
	dw l1d09h
	db 0ffh,0f6h,06ch	;or nn
	dw l1d09h
	db 0ffh,0feh,013h	;cp a,nn
	dw l1d09h
	db 0ffh,010h,02eh	;djnz
	dw p_arg_jrel
	db 0ffh,018h,054h	;jr
	dw p_arg_jrel
	db 0e7h,020h,054h	;jr cc,
	dw p_arg_cc_jrel
	db 0ffh,0d3h,076h	;out (nn),a
	dw l1d37h
	db 0ffh,0dbh,03fh	;in a,(nn)
	dw l1d29h
	db 0

; 3 byte opcodes
b_1b9b_start:
	db 0c7h,0c2h,052h	;jp cc,mn
	dw p_arg_cc_mn
	db 0c7h,0c4h,00ch	;call cc,mn
	dw p_arg_cc_mn
	db 0cfh,001h,056h	;ld ww,mn
	dw p_arg_ww_mn
	db 0ffh,0c3h,052h	;jp mn
	dw p_arg_mn
	db 0ffh,0cdh,00ch	;call mn
	dw p_arg_mn
	db 0ffh,022h,056h	;ld (mn),hl
	dw p_arg_addr_hl
	db 0ffh,02ah,056h	;ld hl,(mn)
	dw p_arg_hl_addr
	db 0ffh,032h,056h	;ld (mn),a
	dw p_arg_addr_a
	db 0ffh,03ah,056h	;ld a,(mn)
	dw p_arg_a_addr
	db 0

; Prefix ED + 1 byte opcode, no arguments
; Format: opcode, t_MNEMONICS index
b_1bc9_start:
	db 044h,066h		;neg
	db 045h,092h		;retn
	db 04dh,08eh		;reti
	db 067h,0b1h		;rrd
	db 06fh,0a2h		;rld
	db 0a0h,05fh		;ldi
	db 0a1h,01ch		;cpi
	db 0a2h,04bh		;ini
	db 0a3h,07dh		;outi
	db 0a8h,058h		;ldd
	db 0a9h,015h		;cpd
	db 0aah,044h		;ind
	db 0abh,079h		;outd
	db 0b0h,062h		;ldir
	db 0b1h,01fh		;cpir
	db 0b2h,04eh		;inir
	db 0b3h,072h		;otir
	db 0b8h,05bh		;lddr
	db 0b9h,018h		;cpdr
	db 0bah,047h		;indr
	db 0bbh,06eh		;otdr
	db 08bh,0d5h		;otdm
	db 09bh,0d9h		;otdmr
	db 083h,0deh		;otim
	db 093h,0e2h		;otimr
	db 076h,0ebh		;slp
	db 0ffh			;<end mark>

b_1bf4_start:
	db 0e7h,040h,03fh	;in r,(c) ;r=b,c,d,e
	dw p_arg_in_c	   	;
	db 0f7h,060h,03fh	;in r,(c) ;r=h,l
	dw p_arg_in_c	   	;
	db 0ffh,078h,03fh	;in r,(c) ;r=a
	dw p_arg_in_c	   	;
	db 0e7h,041h,076h	;out (c),r ;r=b,c,d,e
	dw p_arg_out_c	   	;
	db 0f7h,061h,076h	;out (c),r ;r=h,l
	dw p_arg_out_c	   	;
	db 0ffh,079h,076h	;out (c),r ;r=a
	dw p_arg_out_c	   	;
	db 0cfh,042h,0b7h	;sbc hl,rr
	dw l1dcah	   	;
	db 0cfh,04ah,000h	;adc hl,rr
	dw l1dcah	   	;
	db 0ffh,046h,03dh	;im 0
	dw l1d85h	   	;
	db 0ffh,056h,03dh	;im 1
	dw l1d89h	   	;
	db 0ffh,05eh,03dh	;im 2
	dw l1d8dh	   	;
	db 0ffh,047h,056h	;ld i,a
	dw l1d92h	   	;
	db 0ffh,057h,056h	;ld a,i
	dw l1d97h	   	;
	db 0ffh,04fh,056h	;ld r,a
	dw l1d9ch	   	;
	db 0ffh,05fh,056h	;ld a,r
	dw l1da1h
	db 0cfh,04ch,0d2h	;mlt rr
	dw p_arg_ww
	db 0c7h,004h,0eeh	;tst r
	dw p_arg_r
	db 0

l228bh:
	db 0e7h,000h,0cfh	;in0 r,(m) ;r=b,c,d,e
	dw p_arg_r_m
	db 0f7h,020h,0cfh	;in0 r,(m) ;r=h,l
	dw p_arg_r_m
	db 0ffh,038h,0cfh	;in0 a,(m)
	dw p_arg_r_m
	db 0e7h,001h,0e7h	;out0 (m),r ;r=b,c,d,e
	dw p_arg_m_r
	db 0f7h,021h,0e7h	;out0 (m),r ;r=h,l
	dw p_arg_m_r
	db 0ffh,039h,0e7h	;out0 (m),a
	dw p_arg_m_r
	db 0ffh,064h,0eeh	;tst m
	dw l1d09h
	db 0ffh,074h,0f1h	;tstio m
	dw l1d09h
	db 0

b_1c40_start:
	db 0efh,043h,056h	;ld (mn),ww	;ww=bc,de
	dw p_arg_addr_ww
	db 0ffh,073h,056h	;ld (mn),sp
	dw p_arg_addr_ww
	db 0efh,04bh,056h	;ld ww,(mn)	;ww=bc,de
	dw p_arg_ww_addr
	db 0ffh,07bh,056h	;ld sp,(mn)
	dw p_arg_ww_addr
	db 0

; CB
b_1c55_start:
	db 0f8h,000h,09bh	;rlc g
	dw l1e03h
	db 0f8h,008h,0aah	;rrc g
	dw l1e03h
	db 0f8h,010h,096h	;rl g
	dw l1e03h
	db 0f8h,018h,0a5h	;rr g
	dw l1e03h
	db 0f8h,020h,0c0h	;sla g
	dw l1e03h
	db 0f8h,028h,0c3h	;sra g
	dw l1e03h
	db 0f8h,038h,0c6h	;srl g
	dw l1e03h
	db 0c0h,040h,009h	;bit b,g
	dw p_arg_bitop
	db 0c0h,080h,088h	;res b,g
	dw p_arg_bitop
	db 0c0h,0c0h,0bdh	;set b,g
	dw p_arg_bitop
	db 0

;-------------------------------------------------------------------------------

p_arg_r_r:
	call p_arg_r
	call p_char_comma
	jp p_arg_rs
p_arg_a_r:
	call p_A_comma
	jp p_arg_rs
l1c97h:
	ret

p_arg_r_m:
	call p_arg_r
	call p_char_comma
	jp sub_1d2ch

p_arg_m_r:
	call sub_1d2ch
	call p_char_comma
	jp p_arg_r

l1c98h:
	ld a,(iy+000h)
	and 038h
	jp out_hex

l1ca0h:
	call pstr_inl
	DC	'(SP),'
	jp p_arg_hlixiy

l1caeh:
	call p_char_lparen
	call p_arg_hlixiy
	jr out_rparen

p_arg_ex_dehl:
	ld hl,l1773h
	jp pstr

l1cc1h:
	call pstr_inl
	DC	'SP,'
	jp p_arg_hlixiy

p_arg_ex_afaf:
	ld hl,b_176d_start
	jp pstr

l1cd3h:
	call p_arg_hlixiy
	call p_char_comma
	jp p_arg_ww
l1cdch:
	call sub_1ce8h
	call p_char_comma
	jp p_char_A

l1ce5h:
	call p_A_comma
sub_1ce8h:
	call p_char_lparen
	call p_arg_ww
	jr out_rparen

l1cf5h:
	call p_A_comma
	jr l1d09h
l1cfah:
	call p_arg_r
	call p_char_comma
	ld a,(isprefix_ixiy)
	and a
	ld a,(iy+002h)
	jr nz,l1d0ch
l1d09h:
	ld a,(iy+001h)
l1d0ch:
	jp out_hex

p_arg_cc_jrel:
	ld a,(iy+000h)
	and 018h
	call p_arg_cc0
	call p_char_comma
p_arg_jrel:
	ld c,(iy+001h)
	ld a,c
	rla
	sbc a,a
	ld b,a
	push iy
	pop hl
	add hl,bc
	inc hl
	inc hl
	jr l1d4eh

l1d29h:
	call p_A_comma
sub_1d2ch:
	call p_char_lparen
	ld a,(iy+001h)
p_arg_nn_rp:
	call out_hex
out_rparen:
	jr p_char_rparen

l1d37h:
	call sub_1d2ch
	jr p_char_comma_A

p_arg_cc_mn:
	call p_arg_cc
	call p_char_comma
p_arg_mn:
	ld l,(iy+001h)
	ld h,(iy+002h)
l1d4eh:
	ld a,002h
sub_1d50h:
	ld (disas_argtype),a
	ld (disas_arg_16),hl
	jp out_hl

p_arg_ww_mn:
	call p_arg_ww
	call p_char_comma
	jr p_arg_mn

p_arg_addr_hl:
	call p_arg_addr
	call p_char_comma
	jp p_arg_hlixiy

p_arg_hl_addr:
	call p_arg_hlixiy
	call p_char_comma
	jp p_arg_addr

p_arg_addr_a:
	call p_arg_addr
p_char_comma_A:
	call p_char_comma
	jr p_char_A

p_A_comma:
	call p_char_A
p_char_comma:
	ld a,','
	db 021h
p_char_A:
	ld a,'A'
	db 021h
l1d85h:
	ld a,'0'
	db 021h
l1d89h:
	ld a,'1'
	db 021h
l1d8dh:
	ld a,'2'
	db 021h
p_char_rparen:
	ld a,')'
	db 021h
p_char_lparen:
	ld a,'('
	jp outchar

l1d92h:
	ld hl,b_1da7_start
	jr l1da4h
l1d97h:
	ld hl,l1daah
	jr l1da4h
l1d9ch:
	ld hl,l1dadh
	jr l1da4h
l1da1h:
	ld hl,l1db0h
l1da4h:
	jp pstr

b_1da7_start:
	DC	'I,A'
l1daah:
	DC	'A,I'
l1dadh:
	DC	'R,A'
l1db0h:
	DC	'A,R'

p_arg_in_c:
	call p_arg_r
	call p_char_comma
	ld hl,t__C_
	jp pstr

p_arg_out_c:
	ld hl,t__C_
	call pstr
	call p_char_comma
	jr p_arg_r

l1dcah:
	call p_arg_hlixiy
	call p_char_comma
	jp p_arg_ww

p_arg_addr_ww:
	call p_arg_addr
	call p_char_comma
	jp p_arg_ww

p_arg_ww_addr:
	call p_arg_ww
	call p_char_comma
	jr p_arg_addr

p_arg_a_addr:
	call p_A_comma
p_arg_addr:
	call p_char_lparen
	ld l,(iy+001h)
	ld h,(iy+002h)
	ld a,001h
	call sub_1d50h
	jr p_char_rparen

p_arg_bitop:
	ld a,(isprefix_ixiy)
	and a
	jr nz,l1defh
	ld a,(iy+001h)
	jr l1df2h
l1defh:
	ld a,(iy+002h)
l1df2h:
	push af
	rra
	rra
	rra
	and 007h
	add a,'0'
	call outchar
	call p_char_comma
	pop af
	jr p_arg_r0

l1e03h:
	ld a,(isprefix_ixiy)
	and a
	jr nz,l1e0eh
	ld a,(iy+001h)
	jr l1e11h
l1e0eh:
	ld a,(iy+002h)
l1e11h:
	jr p_arg_r0

p_arg_r:
	ld a,(iy+000h)
	rra
	rra
	rra
	jr p_arg_r0
p_arg_rs:
	ld a,(iy+000h)
p_arg_r0:
	and 007h
	cp 006h
	jr nz,p_arg_r1
	ld a,(isprefix_ixiy)
	and a
	ld a,006h
	jr z,p_arg_r1
	ld hl,b_1e78_start
	ld a,(isprefix_ixiy)
	dec a
	jr z,l1e4dh
	ld hl,l1e7bh
l1e4dh:
	call pstr
	ld a,(iy+001h)
	push af
	rlca
	ld a,'+'
	jr nc,l1e61h
	pop af
	neg
	push af
	ld a,'-'
l1e61h:
	call outchar
	pop af
	jp p_arg_nn_rp

p_arg_r1:
	ld hl,t_BCDEHL_HL_A
	jr p_arg

b_1e78_start:
	DC	'(IX'
l1e7bh:
	DC	'(IY'

p_arg_hlixiy:
	ld a,(isprefix_ixiy)
	ld hl,t_HL.IX.IY
	jr p_arg
p_arg_zz:
	ld hl,t_BC.DE.HL.AF
	jr l1e8eh
p_arg_ww:
	ld hl,t_BC.DE.HL.SP
l1e8eh:
	ld a,(iy+000h)
	rra
	rra
	rra
	rra
	and 003h
	cp 002h
	jr z,p_arg_hlixiy
	jr p_arg

p_arg_cc:
	ld a,(iy+000h)
p_arg_cc0:
	rra
	rra
	rra
	and 007h
	ld hl,t_tstfl_ZCPS
p_arg:
	ld b,a
	call sel_dc_string
	jp pstr

;-------------------------------------------------------------------------------

t_MNEMONICS:
	DC	'ADC'
	DC	'ADD'
	DC	'AND'
	DC	'BIT'
	DC	'CALL'
	DC	'CCF'
	DC	'CP'
	DC	'CPD'
	DC	'CPDR'
	DC	'CPI'
	DC	'CPIR'
	DC	'CPL'
	DC	'DAA'
	DC	'DEC'
	DC	'DI'
	DC	'DJNZ'
	DC	'EI'
	DC	'EX'
	DC	'EXX'
	DC	'HALT'
	DC	'IM'
	DC	'IN'
	DC	'INC'
	DC	'IND'
	DC	'INDR'
	DC	'INI'
	DC	'INIR'
	DC	'JP'
	DC	'JR'
	DC	'LD'
	DC	'LDD'
	DC	'LDDR'
	DC	'LDI'
	DC	'LDIR'
	DC	'NEG'
	DC	'NOP'
	DC	'OR'
	DC	'OTDR'
	DC	'OTIR'
	DC	'OUT'
	DC	'OUTD'
	DC	'OUTI'
	DC	'POP'
	DC	'PUSH'
	DC	'RES'
	DC	'RET'
	DC	'RETI'
	DC	'RETN'
	DC	'RL'
	DC	'RLA'
	DC	'RLC'
	DC	'RLCA'
	DC	'RLD'
	DC	'RR'
	DC	'RRA'
	DC	'RRC'
	DC	'RRCA'
	DC	'RRD'
	DC	'RST'
	DC	'SBC'
	DC	'SCF'
	DC	'SET'
	DC	'SLA'
	DC	'SRA'
	DC	'SRL'
	DC	'SUB'
	DC	'XOR'
	DC	'IN0'
	DC	'MLT'
	DC	'OTDM'
	DC	'OTDMR'
	DC	'OTIM'
	DC	'OTIMR'
	DC	'OUT0'
	DC	'SLP'
	DC	'TST'
	DC	'TSTIO'
	DB	0

t_BCDEHL_HL_A:
	DC	'B'
	DC	'C'
	DC	'D'
	DC	'E'
	DC	'H'
	DC	'L'
	DC	'(HL)'
	DC	'A'
	DB	0
t_BC.DE.HL.SP:
	DC	'BC'
	DC	'DE'
	DC	'HL'
	DC	'SP'
	DB	0
t_BC.DE.HL.AF:
	DC	'BC'
	DC	'DE'
t_HL.AF:
	DC	'HL'
	DC	'AF'
	DB	0
t_BC.DE.IY.SP:
	DC	'BC'
	DC	'DE'
	DC	'IY'
	DC	'SP'
	DB	0
t_BC.DE.IX.SP:
	DC	'BC'
	DC	'DE'
	DC	'IX'
	DC	'SP'
	DB	0
t_HL.IX.IY:
	DC	'HL'
t_IX.IY:
	DC	'IX'
	DC	'IY'
	DB	0
t_tstfl_ZC:
	DC	'NZ'
	DC	'Z'
	DC	'NC'
	DC	'C'
	DC	'NE'
	DC	'EQ'
	DC	'GE'
	DC	'LT'
	DB	0
t_tstfl_ZCPS:
	DC	'NZ'
	DC	'Z'
	DC	'NC'
	DC	'C'
	DC	'PO'
	DC	'PE'
	DC	'P'
	DC	'M'
	DC	'NE'
	DC	'EQ'
	DC	'GE'
	DC	'LT'
	DC	'NV'
	DC	'V'
	DB	0
t__C_:
	DC	'(C)'
	DB	0

;-------------------------------------------------------------------------------

tc_set_bp:
	ld hl,(reg.pc)
	ld a,h
	or l
	jr z,l2037h
	ld de,BDOS
	and a
	sbc hl,de
	ld hl,l20edh
	jr z,l2031h
	ld iy,(reg.pc)
	call disas_get_instrlen
	jp nc,ERROR
	ld c,b
	ld b,0
	ld hl,(reg.pc)
	add hl,bc
	call bp_trace_enter
	ld iy,(reg.pc)
	ld hl,b_2039_start
	call lookup_opc
	ccf
	ret c
	ex de,hl
l2031h:
	call CALL_HL
	call c,bp_trace_enter
l2037h:
	scf
	ret

;-------------------------------------------------------------------------------

b_2039_start:
	db 0ffh,0ddh,000h	;Prefix DD
	dw l20a7h
	db 0ffh,0fdh,000h	;Prefix FD
	dw l20ach
	db 0ffh,0edh,000h	;Prefix ED
	dw l20b8h

b_2048_start:
	db 0ffh,0cdh,000h	;call mn
	dw l2080h
	db 0ffh,0c3h,000h	;jp mn
	dw l208bh
	db 0ffh,0e9h,000h	;jp ()
	dw l20a2h
	db 0ffh,0c9h,000h	;ret
	dw l20dch
	db 0ffh,0cfh,000h	;rst 8
	dw l2115h
	db 0c7h,0c7h,000h	;rst n
	dw l20f9h
	db 0c7h,0c4h,000h	;call cc,mn
	dw l2080h
	db 0f7h,010h,000h	;djnz d; jr d
	dw l2093h
	db 0e7h,020h,000h	;jr cc,d
	dw l2093h
	db 0c7h,0c2h,000h	;jp cc,mn
	dw l208bh
	db 0c7h,0c0h,000h	;ret cc
	dw l20c5h
	db 0

;-------------------------------------------------------------------------------
; call mn	call cc,mn
l2080h:
	ld a,(b_21e2_start)
	and a
	jr nz,l208bh
	ld a,(trace_call_flag)
	and a
	ret nz

; jp mn		jp cc,mn
l208bh:
	ld l,(iy+001h)
	ld h,(iy+002h)
	scf
	ret

l2093h:
	ld c,(iy+001h)
	ld a,c
	rla
	sbc a,a
	ld b,a
	ld hl,(reg.pc)
	add hl,bc
	inc hl
	inc hl
	scf
	ret

; jp (hl)
l20a2h:
	ld hl,(reg.l)
	scf
	ret

; Prefix DD
l20a7h:
	ld hl,(reg.ix)
	jr l20afh
; Prefix FD
l20ach:
	ld hl,(reg.iy)
l20afh:
	ld a,(iy+001h)
	cp 0e9h			; jp (ix); jp (iy)
	scf
	ret z
	and a
	ret

; Prefix ED
l20b8h:
	ld a,(iy+001h)
	cp 04dh			; reti
	jr z,l20dch
	cp 045h			; retn
	jr z,l20dch
	and a
	ret
l20c5h:
	ld a,(iy+000h)
	ld (l20d7h),a
	ld hl,(reg.f)
	push hl
	pop af
	call l20d7h
	scf
	jr c,l20dch
	ret
l20d7h:
	nop
	and a
	pop hl
	inc hl
	jp (hl)

l20dch:
	ld a,(b_21e2_start)
	and a
	jr nz,l20edh
	ld a,(trace_call_flag)
	and a
	jr z,l20edh
	call l20edh
	pop hl
	ret
l20edh:
	ld hl,(reg_sp)
	ld e,(hl)
	inc hl
	ld d,(hl)
	ex de,hl
	call bp_trace_enter
l2115h:
	and a
	ret

l20f9h:
	ld a,(l0003h)
	cp (iy+000h)
	ret z
	ld a,(iy+000h)
	and 038h
	ld l,a
	ld h,000h
	ld a,(b_21e2_start)
	and a
	jr nz,l2113h
	ld a,(trace_call_flag)
	and a
	ret nz
l2113h:
	scf
	ret

;-------------------------------------------------------------------------------
; >>C[N][J] [steps]
; >>C[N][J] W expression
; >>C[N][J] U expression
;     trace over Calls [No list] [Jumps only] /.While./.Until.

cmd_C:
	ld hl,cmd_C
	ld a,1
	jr cmd_tc

;-------------------------------------------------------------------------------
; >>T[N][J] [steps]
; >>T[N][J] W expression
; >>T[N][J] U expression
;      Trace [no List] [Jumps only] / .While. / .Until.

cmd_T:
	xor a
	ld hl,cmd_T
cmd_tc:
	ld (cmd_rpt),hl
	ld (trace_call_flag),a
	call get_char_upper
	sub 'N'
	jr nz,tc_non
	inc de
tc_non:
	ld (trace_N_flag),a
	call get_char_upper
	sub 'J'
	jr nz,tc_noj
	inc de
tc_noj:
	ld (trace_J_flag),a
	call tc_chk_u_or_w
	jr z,tc_save_uw_expr_ptr
	ld hl,1				;default: 1 step
	call get_lastarg_def
tc_save_uw_expr_ptr:
	ld (trace_cnt_or_ptr),hl
	sub a
	ld (bp_p_cpu_flag),a
l214ch:
	call tc_set_bp
	jr user_go1

l2151h:
	call bp_clr_temporary
	ld a,(trace_J_flag)
	and a
	jr nz,l216bh
	ld iy,(reg.pc)
	call sub_21c8h
	jr z,l216bh
	ld hl,b_2048_start
	call lookup_opc
	jr nc,l214ch
l216bh:
	ld a,(trace_UW_flag)		;0 or 'U' or 'W'
	and a
	jr z,tc_cnt			;flag is 0, check for step count.
	ld de,(trace_cnt_or_ptr)
	call expr
	ld a,h
	or l
	add a,0ffh
	sbc a,a
	ld hl,trace_UW_flag		;'U' or 'W'
	xor (hl)
	bit 1,a				;'U' = 55H, 'W' = 57H
	jr z,l2193h
do_break0:				;print registers and go to main loop
	jp do_break

tc_cnt:
	ld hl,(trace_cnt_or_ptr)
	dec hl
	ld (trace_cnt_or_ptr),hl
	ld a,h
	or l
	jr z,do_break0
l2193h:
	call tc_set_bp
	jr nc,do_break0
	ld a,(trace_N_flag)
	ld b,a
	ld a,(bp_p_cpu_flag)
	or b
	ld (bp_p_cpu_flag),a
user_go1:
	jp user_go

tc_chk_u_or_w:
	call skipbl
	xor a
	ld (trace_UW_flag),a
	call get_char_upper
	cp 'U'
	jr z,l21b5h
	cp 'W'
	ret nz
l21b5h:
	inc de
	push af
	push de
	call expr
	jp c,ERROR
	call assert_eol
	pop hl
	pop af
	ld (trace_UW_flag),a
	sub a
	ret

sub_21c8h:
	ld a,(iy+000h)
	cp 0edh
	jr z,l21dah
	and 0dfh
	cp 0ddh
	ret nz
	ld a,(iy+001h)
	cp 0e9h
	ret
l21dah:
	ld a,(iy+001h)
	and 0f7h
	cp 045h
	ret

;-------------------------------------------------------------------------------

con_col:
	db	0

;-------------------------------------------------------------------------------

b_21e2_start:
	db	0
trace_call_flag:
	db	0		;1=call, 0=trace
trace_UW_flag:
	db	0		;0 or 'U' or 'W'
trace_cnt_or_ptr:
	dw	0
trace_N_flag:
	db	0		;0 if 'N'
trace_J_flag:
	db	0		;0 if 'J'

bp_p_cpu_flag:
	db	0

bp_tab:
	rept BP_CNT
	 rept BP_SIZE
	  db	0
	 endm
	endm

expr_p1:
	dw	expr_buf

expr_buf:
current_cseg	defl	$ - current_cseg
	.phase	current_phase + current_cseg

start:
	LD	SP,ldr_end+(stack-ddtz_base)
	LD	DE,signon		;ldr_end+(expr_buf-ddtz_base)
	LD	C,BDOS_PSTR
	CALL	BDOS

	xor	a
	dec	a
	jp	po,reloc
	ld	de,msgz80
	LD	C,BDOS_PSTR
	CALL	BDOS
	jp	0

reloc:
	LD	HL,ldr_end+ddtz_size	;start of reloc bitmap
	ld	bc,0108h		;init bit counter

	EXX
	LD	HL,(BDOS+1)
	LD	(ldr_end+(ddtz_bdos+1-ddtz_base)),HL
	LD	BC,ddtz_size-1
	LD	D,B
	LD	E,0FFH
	INC	DE			;size rounded up to next page boundary
	INC	BC			;ddtz_size
	OR	A
	SBC	HL,DE			;BDOS - size
	LD	(BDOS+1),HL		;-> new BDOS entry

	push	hl
	PUSH	BC
	ld	de,ldr_end
	sbc	hl,de
	EX	DE,HL			;-> DE
	LD	HL,ldr_size
	add	hl,bc
	ld	b,h
	ld	c,l
	LD	HL,TPA
reloc_lp:
	EXX
	djnz	reloc_nl
	ld	b,c			;reload bit counter
	LD	e,(HL)			;get next 8 relocation bits
	INC	HL
reloc_nl:
	sla	e
	EXX
	JR	NC,reloc_next
	DEC	HL
	LD	A,(HL)
	ADD	A,E
	LD	(HL),A
	INC	HL
	LD	A,(HL)
	ADC	A,D
	LD	(HL),A
reloc_next:
	cpi
	jp	pe,reloc_lp
	dec	hl

	POP	BC
	pop	de
	EX	DE,HL
	ADD	HL,BC
	EX	DE,HL
	DEC	DE
	LDDR
	LD	HL,conbuf+2-ddtz_base
	ADD	HL,DE
	JP	(HL)

current_phase	defl	$
	.dephase
current_cseg	defl	$

	ds	EXPR_BUF_SIZE - ($ - expr_buf)
expr_bufe:

;-------------------------------------------------------------------------------

msg_Y:
	dc	'Yn'
reg_Y:
	rept	YREG_CNT
	 dw	0
	endm

last_S:
	dw	TPA

last_I:
	dw	0

last_O_addr:
	dw	0
last_O_val:
	db	0

cmd_Q_jopt:
	db	-1

last_D:
	dw	TPA

cmdR_rindex:
	db	0

high_load:
	dw	TPA
max_load:
	dw	TPA

l1262h:
	dw	0
last_A:
	dw	TPA
cmd_A_prev:
	dw	TPA

prefix_ixiy:
	db	0

isprefix_ixiy:
	db	0
last_L:
	dw	TPA
disas_arg_16:
	dw	0
disas_argtype:
	db	0

pbl_loop_adr:
	dw	0

symlen_cur:		;max length of symbols read so far
	db	0
cur_fcb:
	dw	0
fcbsym:
	ds	33

ddtz_size	equ	$-ddtz_base
ddtz_end:

;-------------------------------------------------------------------------------

	end