blob: 6d09ede68870f79c3a3b8ac4f0f4c67805b2e5ac (
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
|
info
prefix z80_
opcode_size 8
extra_tables cb ed dded fded ddcb fdcb dd fd
body z80_run_op
include z80_util.c
header z80.h
regs
main 8 b c d e h l f a
alt 8 b' c' d' e' h' l' f' a'
i 8
r 8
iff1 8
iff2 8
imode 8
sp 16
ix 16
iy 16
pc 16
wz 16
nflag 8
last_flag_result 8
pvflag 8
chflags 8
zflag 8
scratch1 16
scratch2 16
flags
register f
S 7 sign last_flag_result.7
Z 6 zero zflag
Y 5 bit-5 last_flag_result.5
H 4 half-carry chflags.3
P 2 parity pvflag
V 2 overflow pvflag
X 3 bit-3 last_flag_result.3
N 1 none nflag
C 0 carry chflags.7
z80_op_fetch
cycles 1
add 1 r r
mov pc scratch1
ocall read_8
add 1 pc pc
z80_run_op
z80_op_fetch
dispatch scratch1
11001011 cb_prefix
z80_op_fetch
dispatch scratch1 cb
11011101 dd_prefix
z80_op_fetch
dispatch scratch1 dd
11101101 ed_prefix
z80_op_fetch
dispatch scratch1 ed
11111101 fd_prefix
z80_op_fetch
dispatch scratch1 fd
dd 11001011 ddcb_prefix
z80_calc_index ix
cycles 2
mov pc scratch1
ocall read_8
add 1 pc pc
dispatch scratch1 ddcb
fd 11001011 fdcb_prefix
z80_calc_index iy
cycles 2
mov pc scratch1
ocall read_8
add 1 pc pc
dispatch scratch1 fdcb
z80_check_cond
arg cond 8
local invert 8
switch cond
case 0
meta istrue invert
lnot zflag invert
case 1
meta istrue zflag
case 2
meta istrue invert
not chflags invert
and 0x80 invert invert
case 3
meta istrue invert
and 0x80 invert invert
case 4
meta istrue invert
lnot pvflag invert
case 5
meta istrue pvflag
case 6
meta istrue invert
not last_flag_result invert
and 0x80 invert invert
case 7
meta istrue invert
and 0x80 last_flag_result invert
end
z80_fetch_hl
lsl h 8 scratch1
or l scratch1 scratch1
ocall read_8
z80_store_hl
lsl h 8 scratch2
or l scratch2 scratch2
ocall write_8
z80_fetch_immed
mov pc scratch1
ocall read_8
add 1 pc pc
z80_fetch_immed16
mov pc scratch1
ocall read_8
mov scratch1 wz
add 1 pc pc
mov pc scratch1
ocall read_8
add 1 pc pc
lsl scratch1 8 scratch1
or scratch1 wz wz
z80_fetch_immed_reg16
mov pc scratch1
ocall read_8
mov scratch1 low
add 1 pc pc
mov pc scratch1
ocall read_8
mov scratch1 high
add 1 pc pc
z80_fetch_immed_to_reg16
mov pc scratch1
ocall read_8
mov scratch1 reg
add 1 pc pc
mov pc scratch1
ocall read_8
add 1 pc pc
lsl scratch1 8 scratch1
or scratch1 reg reg
01RRR110 ld_from_hl
z80_fetch_hl
mov scratch1 main.R
01DDDSSS ld_from_reg
mov main.S main.D
z80_calc_index
arg index 16
mov index wz
z80_fetch_immed
sext 16 scratch1 scratch1
add scratch1 wz wz
z80_fetch_index
arg index 16
z80_calc_index index
mov wz scratch1
cycles 5
ocall read_8
z80_store_index
mov wz scratch2
ocall write_8
dd 01RRR110 ld_from_ix
z80_fetch_index ix
mov scratch1 main.R
fd 01RRR110 ld_from_iy
z80_fetch_index iy
mov scratch1 main.R
00RRR110 ld_immed
z80_fetch_immed
mov scratch1 main.R
01110RRR ld_to_hl
mov main.R scratch1
z80_store_hl
dd 01110RRR ld_to_ix
z80_calc_index ix
mov wz scratch2
mov main.R scratch1
ocall write_8
fd 01110RRR ld_to_iy
z80_calc_index iy
mov wz scratch2
mov main.R scratch1
ocall write_8
00110110 ld_to_hl_immed
z80_fetch_immed
z80_store_hl
00001010 ld_a_from_bc
lsl b 8 scratch1
or c scratch2 scratch1
ocall read_8
mov scratch1 a
00011010 ld_a_from_de
lsl d 8 scratch1
or e scratch2 scratch1
ocall write_8
mov scratch1 a
00111010 ld_a_from_immed
z80_fetch_immed16
mov wz scratch1
ocall read_8
mov scratch1 a
00000010 ld_a_to_bc
lsl b 8 scratch2
or c scratch2 scratch2
mov a scratch1
ocall write_8
00010010 ld_a_to_de
lsl d 8 scratch2
or e scratch2 scratch2
mov a scratch1
ocall write_8
00110010 ld_a_to_immed
z80_fetch_immed16
mov wz scratch2
mov a scratch1
ocall write_8
ed 01000111 ld_i_a
mov a i
cycles 1
ed 01001111 ld_r_a
mov a r
cycles 1
00000001 ld_bc_immed
meta high b
meta low c
z80_fetch_immed_reg16
00010001 ld_de_immed
meta high d
meta low e
z80_fetch_immed_reg16
00100001 ld_hl_immed
meta high h
meta low l
z80_fetch_immed_reg16
00110001 ld_sp_immed
meta reg sp
z80_fetch_immed_to_reg16
dd 00100001 ld_ix_immed
meta reg ix
z80_fetch_immed_to_reg16
fd 00100001 ld_iy_immed
meta reg iy
z80_fetch_immed_to_reg16
z80_fetch16_from_immed
z80_fetch_immed16
mov wz scratch1
ocall read_8
mov scratch1 low
add 1 wz wz
mov wz scratch1
ocall read_8
mov scratch1 high
00101010 ld_hl_from_immed
meta low l
meta high h
z80_fetch16_from_immed
ed 01001011 ld_bc_from_immed
meta low c
meta high b
z80_fetch16_from_immed
ed 01011011 ld_de_from_immed
meta low e
meta high c
z80_fetch16_from_immed
ed 01101011 ld_hl_from_immed_slow
meta low l
meta high h
z80_fetch16_from_immed
z80_fetch_reg16_from_immed
z80_fetch_immed16
mov wz scratch1
ocall read_8
mov scratch1 reg
add 1 wz wz
mov wz scratch1
ocall read_8
lsl scratch1 8 scratch1
or scratch1 reg reg
ed 01111011 ld_sp_from_immed
meta reg sp
z80_fetch_reg16_from_immed
dd 00101010 ld_ix_from_immed
meta reg ix
z80_fetch_reg16_from_immed
fd 00101010 ld_iy_from_immed
meta reg iy
z80_fetch_reg16_from_immed
00100010 ld_hl_to_immed
z80_fetch_immed16
mov wz scratch2
mov l scratch1
ocall write_8
add 1 wz wz
mov wz scratch2
mov h scratch1
ocall write_8
z80_regpair_to_immed
z80_fetch_immed16
mov wz scratch2
mov low scratch1
ocall write_8
add 1 wz wz
mov high scratch1
mov wz scratch2
ocall write_8
ed 01000011 ld_bc_to_immed
meta low c
meta high b
z80_regpair_to_immed
ed 01010011 ld_de_to_immed
meta low e
meta high d
z80_regpair_to_immed
ed 01100011 ld_hl_to_immed_slow
meta low l
meta high h
z80_regpair_to_immed
ed 01110011 ld_sp_to_immed
meta low sp
local sph 8
lsr sp 8 sph
meta high sph
z80_regpair_to_immed
11111001 ld_sp_hl
cycles 2
lsl h 8 sp
or l sp sp
mov wz scratch2
mov sp scratch1
ocall write_8
add 1 wz wz
lsr sp 8 scratch1
mov wz scratch2
ocall write_8
z80_push
cycles 1
sub 1 sp sp
mov sp scratch2
mov high scratch1
ocall write_8
sub 1 sp sp
mov sp scratch2
mov low scratch1
ocall write_8
11000101 push_bc
meta high b
meta low c
z80_push
11010101 push_de
meta high d
meta low e
z80_push
11100101 push_hl
meta high h
meta low l
z80_push
11110101 push_af
meta high a
meta low f
z80_push
dd 11100101 push_ix
local ixh 8
lsr ix 8 ixh
meta high ixh
meta low ix
z80_push
fd 11100101 push_iy
local iyh 8
lsr iy 8 iyh
meta high iyh
meta low iy
z80_push
z80_pop
mov sp scratch1
ocall read_8
add 1 sp sp
mov scratch1 low
mov sp scratch1
ocall read_8
add 1 sp sp
mov scratch1 high
11000001 pop_bc
meta high b
meta low c
z80_pop
11010001 pop_de
meta high d
meta low e
z80_pop
11100001 pop_hl
meta high h
meta low l
z80_pop
11110001 pop_af
meta high a
meta low f
z80_pop
dd 11100001 pop_ix
local ixh 16
meta high ixh
meta low ix
z80_pop
lsl ixh 8 ixh
or ixh ix ix
fd 11100001 pop_iy
local iyh 16
meta high iyh
meta low iy
z80_pop
lsl iyh 8 iyh
or iyh iy iy
11101011 ex_de_hl
xchg e l
xchg d h
00001000 ex_af_af
xchg a a'
xchg f f'
11011001 exx
xchg b b'
xchg c c'
xchg d d'
xchg e e'
xchg h h'
xchg l l'
11100011 ex_sp_hl
mov sp scratch1
ocall read_8
xchg l scratch1
cycles 1
mov sp scratch2
ocall write_8
add 1 sp wz
mov wz scratch2
ocall read_8
xchg h scratch1
cycles 2
mov wz scratch2
ocall write_8
10000RRR add_reg
add a main.R a
update_flags SZYHVXN0C
dd 10000100 add_ixh
lsr ix 8 scratch1
add a scratch1 a
update_flags SZYHVXN0C
dd 10000101 add_ixl
and ix 0xFF scratch1
add a scratch1 a
update_flags SZYHVXN0C
fd 10000100 add_iyh
lsr iy 8 scratch1
add a scratch1 a
update_flags SZYHVXN0C
fd 10000101 add_iyl
and iy 0xFF scratch1
add a scratch1 a
update_flags SZYHVXN0C
10000110 add_hl
z80_fetch_hl
add a scratch1 a
update_flags SZYHVXN0C
dd 10000110 add_ixd
z80_fetch_index ix
add a scratch1 a
update_flags SZYHVXN0C
fd 10000110 add_iyd
z80_fetch_index iy
add a scratch1 a
update_flags SZYHVXN0C
11000110 add_immed
z80_fetch_immed
add a scratch1 a
update_flags SZYHVXN0C
z80_add16_hl
arg src 16
lsl h 8 hlt
or l hlt hlt
add 1 hlt wz
add src hlt hlt
update_flags YHXN0C
mov hlt l
lsr hlt 8 h
00001001 add_hl_bc
local hlw 16
local bcw 16
meta hlt hlw
lsl b 8 bcw
or c bcw bcw
z80_add16_hl bcw
00011001 add_hl_de
local hlw 16
local dew 16
meta hlt hlw
lsl d 8 dew
or e dew dew
z80_add16_hl dew
00101001 add_hl_hl
local hlw 16
meta hlt hlw
z80_add16_hl hlw
00111001 add_hl_sp
local hlw 16
meta hlt hlw
z80_add16_hl sp
dd 00001001 add_ix_bc
lsl b 8 scratch1
or c scratch1 scratch1
add scratch1 ix ix
update_flags YHXN0C
dd 00011001 add_ix_de
lsl d 8 scratch1
or e scratch1 scratch1
add scratch1 ix ix
update_flags YHXN0C
dd 00101001 add_ix_ix
add ix ix ix
update_flags YHXN0C
dd 00111001 add_ix_sp
add sp ix ix
update_flags YHXN0C
fd 00001001 add_iy_bc
lsl b 8 scratch1
or c scratch1 scratch1
add scratch1 iy iy
update_flags YHXN0C
fd 00011001 add_iy_de
lsl d 8 scratch1
or e scratch1 scratch1
add scratch1 iy iy
update_flags YHXN0C
fd 00101001 add_iy_iy
add iy iy iy
update_flags YHXN0C
fd 00111001 add_iy_sp
add sp iy iy
update_flags YHXN0C
10001RRR adc_reg
adc a main.R a
update_flags SZYHVXN0C
dd 10001100 adc_ixh
lsr ix 8 scratch1
adc a scratch1 a
update_flags SZYHVXN0C
dd 10001101 adc_ixl
and ix 0xFF scratch1
adc a scratch1 a
update_flags SZYHVXN0C
fd 10001100 adc_iyh
lsr iy 8 scratch1
adc a scratch1 a
update_flags SZYHVXN0C
fd 10001101 adc_iyl
and iy 0xFF scratch1
adc a scratch1 a
update_flags SZYHVXN0C
10001110 adc_hl
z80_fetch_hl
adc a scratch1 a
update_flags SZYHVXN0C
dd 10001110 adc_ixd
z80_fetch_index ix
adc a scratch1 a
update_flags SZYHVXN0C
fd 10001110 adc_iyd
z80_fetch_index iy
adc a scratch1 a
update_flags SZYHVXN0C
11001110 adc_immed
z80_fetch_immed
adc a scratch1 a
update_flags SZYHVXN0C
z80_adc16_hl
arg src 16
lsl h 8 hlt
or l hlt hlt
add 1 hlt wz
adc src hlt hlt
update_flags SZYHVXN0C
mov hlt l
lsr hlt 8 h
ed 01001010 adc_hl_bc
local hlw 16
local bcw 16
meta hlt hlw
lsl b 8 bcw
or c bcw bcw
z80_adc16_hl bcw
ed 01011010 adc_hl_de
local hlw 16
local dew 16
meta hlt hlw
lsl d 8 dew
or e dew dew
z80_adc16_hl dew
ed 01101010 adc_hl_hl
local hlw 16
meta hlt hlw
z80_adc16_hl hlw
ed 01111010 adc_hl_sp
local hlw 16
meta hlt hlw
z80_adc16_hl sp
10010RRR sub_reg
sub main.R a a
update_flags SZYHVXN1C
dd 10010100 sub_ixh
lsr ix 8 scratch1
sub scratch1 a a
update_flags SZYHVXN1C
dd 10010101 sub_ixl
and ix 0xFF scratch1
sub scratch1 a a
update_flags SZYHVXN1C
fd 10010100 sub_iyh
lsr iy 8 scratch1
sub scratch1 a a
update_flags SZYHVXN1C
fd 10010101 sub_iyl
and iy 0xFF scratch1
sub scratch1 a a
update_flags SZYHVXN1C
10010110 sub_hl
z80_fetch_hl
sub scratch1 a a
update_flags SZYHVXN1C
dd 10010110 sub_ixd
z80_fetch_index ix
sub scratch1 a a
update_flags SZYHVXN1C
fd 10010110 sub_iyd
z80_fetch_index iy
sub scratch1 a a
update_flags SZYHVXN1C
11010110 sub_immed
z80_fetch_immed
sub scratch1 a a
update_flags SZYHVXN1C
10011RRR sbc_reg
sbc main.R a a
update_flags SZYHVXN1C
dd 10011100 sbc_ixh
lsr ix 8 scratch1
sbc scratch1 a a
update_flags SZYHVXN1C
dd 10011101 sbc_ixl
and ix 0xFF scratch1
sbc scratch1 a a
update_flags SZYHVXN1C
fd 10011100 sbc_iyh
lsr iy 8 scratch1
sbc scratch1 a a
update_flags SZYHVXN1C
fd 10011101 sbc_iyl
and iy 0xFF scratch1
sbc scratch1 a a
update_flags SZYHVXN1C
10011110 sbc_hl
z80_fetch_hl
sbc scratch1 a a
update_flags SZYHVXN1C
dd 10011110 sbc_ixd
z80_fetch_index ix
sbc scratch1 a a
update_flags SZYHVXN1C
fd 10011110 sbc_iyd
z80_fetch_index iy
sbc scratch1 a a
update_flags SZYHVXN1C
11011110 sbc_immed
z80_fetch_immed
sbc scratch1 a a
update_flags SZYHVXN1C
z80_sbc16_hl
arg src 16
lsl h 8 hlt
or l hlt hlt
add 1 hlt wz
sbc src hlt hlt
update_flags SZYHVXN1C
mov hlt l
lsr hlt 8 h
ed 01000010 sbc_hl_bc
local hlw 16
local bcw 16
meta hlt hlw
lsl b 8 bcw
or c bcw bcw
z80_sbc16_hl bcw
ed 01010010 sbc_hl_de
local hlw 16
local dew 16
meta hlt hlw
lsl d 8 dew
or e dew dew
z80_sbc16_hl dew
ed 01100010 sbc_hl_hl
local hlw 16
meta hlt hlw
z80_sbc16_hl hlw
ed 01110010 sbc_hl_sp
local hlw 16
meta hlt hlw
z80_sbc16_hl sp
10100RRR and_reg
and a main.R a
update_flags SZYH1PXN0C0
dd 10100100 and_ixh
lsr ix 8 scratch1
and scratch1 a a
update_flags SZYH1PXN0C0
dd 10100101 and_ixl
and ix a a
update_flags SZYH1PXN0C0
fd 10100100 and_iyh
lsr iy 8 scratch1
and scratch1 a a
update_flags SZYH1PXN0C0
fd 10100101 and_iyl
and iy a a
update_flags SZYH1PXN0C0
10100110 and_hl
z80_fetch_hl
and a scratch1 a
update_flags SZYH1PXN0C0
dd 10100110 and_ixd
z80_fetch_index ix
and a scratch1 a
update_flags SZYH1PXN0C0
fd 10100110 and_iyd
z80_fetch_index iy
and a scratch1 a
update_flags SZYH1PXN0C0
11100110 and_immed
z80_fetch_immed
and a scratch1 a
update_flags SZYH1PXN0C0
10110RRR or_reg
or a main.R a
update_flags SZYH0PXN0C0
dd 10110100 or_ixh
lsr ix 8 scratch1
or scratch1 a a
update_flags SZYH0PXN0C0
dd 10110101 or_ixl
or ix a a
update_flags SZYH0PXN0C0
fd 10110100 or_iyh
lsr iy 8 scratch1
or scratch1 a a
update_flags SZYH0PXN0C0
fd 10110101 or_iyl
or iy a a
update_flags SZYH0PXN0C0
10110110 or_hl
z80_fetch_hl
or a scratch1 a
update_flags SZYH0PXN0C0
dd 10110110 or_ixd
z80_fetch_index ix
or a scratch1 a
update_flags SZYH0PXN0C0
fd 10110110 or_iyd
z80_fetch_index iy
or a scratch1 a
update_flags SZYH0PXN0C0
11110110 or_immed
z80_fetch_immed
or a scratch1 a
update_flags SZYH0PXN0C0
10101RRR xor_reg
xor a main.R a
update_flags SZYH0PXN0C0
dd 10101100 xor_ixh
lsr ix 8 scratch1
xor scratch1 a a
update_flags SZYH0PXN0C0
dd 10101101 xor_ixl
xor ix a a
update_flags SZYH0PXN0C0
fd 10101100 xor_iyh
lsr iy 8 scratch1
xor scratch1 a a
update_flags SZYH0PXN0C0
fd 10101101 xor_iyl
xor iy a a
update_flags SZYH0PXN0C0
10101110 xor_hl
z80_fetch_hl
xor a scratch1 a
update_flags SZYH0PXN0C0
dd 10101110 xor_ixd
z80_fetch_index ix
xor a scratch1 a
update_flags SZYH0PXN0C0
fd 10101110 xor_iyd
z80_fetch_index iy
xor a scratch1 a
update_flags SZYH0PXN0C0
11101110 xor_immed
z80_fetch_immed
xor a scratch1 a
update_flags SZYH0PXN0C0
10111RRR cp_reg
mov main.R last_flag_result
cmp main.R a
update_flags SZHVN1C
dd 10111100 cp_ixh
lsr ix 8 last_flag_result
cmp last_flag_result a
update_flags SZHVN1C
dd 10111101 cp_ixl
mov ix last_flag_result
cmp last_flag_result a
update_flags SZHVN1C
fd 10111100 cp_iyh
lsr iy 8 last_flag_result
cmp last_flag_result a
update_flags SZHVN1C
fd 10111101 cp_iyl
mov iy last_flag_result
cmp last_flag_result a
update_flags SZHVN1C
10111110 cp_hl
z80_fetch_hl
mov scratch1 last_flag_result
cmp scratch1 a
update_flags SZHVN1C
dd 10111110 cp_ixd
z80_fetch_index ix
mov scratch1 last_flag_result
cmp scratch1 a
update_flags SZHVN1C
fd 10111110 cp_iyd
z80_fetch_index iy
mov scratch1 last_flag_result
cmp scratch1 a
update_flags SZHVN1C
11111110 cp_immed
z80_fetch_immed
mov scratch1 last_flag_result
cmp scratch1 a
update_flags SZHVN1C
00RRR100 inc_reg
add 1 main.R main.R
update_flags SZYHVXN0
dd 00100100 inc_ixh
add 0x100 ix ix
update_flags SZYHVXN0
dd 00101100 inc_ixl
local tmp 8
mov ix tmp
add 1 tmp tmp
update_flags SZYHVXN0
and 0xFF00 ix ix
or tmp ix ix
fd 00100100 inc_iyh
add 0x100 iy iy
update_flags SZYHVXN0
fd 00101100 inc_iyl
local tmp 8
mov iy tmp
add 1 tmp tmp
update_flags SZYHVXN0
and 0xFF00 iy iy
or tmp iy iy
00110100 inc_hl
local tmp 8
z80_fetch_hl
#TODO: Either make DSL compiler smart enough to optimize these unnecessary moves out
#or add some syntax to force a certain size on an operation so they are unnecessary
mov scratch1 tmp
add 1 tmp tmp
update_flags SZYHVXN0
mov tmp scratch1
z80_store_hl
dd 00110100 inc_ixd
local tmp 8
z80_fetch_index ix
#TODO: Either make DSL compiler smart enough to optimize these unnecessary moves out
#or add some syntax to force a certain size on an operation so they are unnecessary
mov scratch1 tmp
add 1 tmp tmp
update_flags SZYHVXN0
mov tmp scratch1
cycles 1
z80_store_index
fd 00110100 inc_iyd
local tmp 8
z80_fetch_index iy
#TODO: Either make DSL compiler smart enough to optimize these unnecessary moves out
#or add some syntax to force a certain size on an operation so they are unnecessary
mov scratch1 tmp
add 1 tmp tmp
update_flags SZYHVXN0
mov tmp scratch1
cycles 1
z80_store_index
z80_inc_pair
arg high 8
arg low 8
local word 16
lsl high 8 word
or low word word
add 1 word word
mov word low
lsr word 8 high
00000011 inc_bc
z80_inc_pair b c
00010011 inc_de
z80_inc_pair d e
00100011 inc16_hl
z80_inc_pair h l
00110011 inc_sp
add 1 sp sp
dd 00100011 inc_ix
add 1 ix ix
fd 00100011 inc_iy
add 1 iy iy
00RRR101 dec_reg
sub 1 main.R main.R
update_flags SZYHVXN1
dd 00100101 dec_ixh
sub 0x100 ix ix
update_flags SZYHVXN1
dd 00101101 dec_ixl
local tmp 8
mov ix tmp
sub 1 tmp tmp
update_flags SZYHVXN1
and 0xFF00 ix ix
or tmp ix ix
fd 00100101 dec_iyh
sub 0x100 iy iy
update_flags SZYHVXN1
fd 00101101 dec_iyl
local tmp 8
mov iy tmp
sub 1 tmp tmp
update_flags SZYHVXN1
and 0xFF00 iy iy
or tmp iy iy
00110101 dec_hl
z80_fetch_hl
#TODO: fix size
sub 1 scratch1 scratch1
update_flags SZYHVXN1
z80_store_hl
dd 00110101 dec_ixd
local tmp 8
z80_fetch_index ix
#TODO: Either make DSL compiler smart enough to optimize these unnecessary moves out
#or add some syntax to force a certain size on an operation so they are unnecessary
mov scratch1 tmp
sub 1 tmp tmp
update_flags SZYHVXN1
mov tmp scratch1
cycles 1
z80_store_index
fd 00110101 dec_iyd
local tmp 8
z80_fetch_index iy
#TODO: Either make DSL compiler smart enough to optimize these unnecessary moves out
#or add some syntax to force a certain size on an operation so they are unnecessary
mov scratch1 tmp
sub 1 tmp tmp
update_flags SZYHVXN1
mov tmp scratch1
cycles 1
z80_store_index
z80_dec_pair
arg high 8
arg low 8
local word 16
lsl high 8 word
or low word word
sub 1 word word
mov word low
lsr word 8 high
00001011 dec_bc
z80_dec_pair b c
00011011 dec_de
z80_dec_pair d e
00101011 dec16_hl
z80_dec_pair h l
00111011 dec_sp
sub 1 sp sp
dd 00101011 dec_ix
sub 1 ix ix
fd 00101011 dec_iy
sub 1 iy iy
00101111 cpl
not a a
update_flags YH1XN1
11101101 neg
neg a a
update_flags SZYHVXN1C
00111111 ccf
xor 0x80 chflags chflags
00111111 scf
or 0x80 chflags chflags
00000000 nop
11110011 di
mov 0 iff1
mov 0 iff2
#TODO: update interrupt/sync cycle
11111011 ei
mov 1 iff1
mov 1 iff2
#TODO: update interrupt/sync cycle
ed 01000110 im0
mov 0 imode
ed 01010110 im1
mov 1 imode
ed 01011110 im2
mov 2 imode
11000011 jp
z80_fetch_immed16
mov wz pc
11CCC010 jp_cc
z80_check_cond C
z80_fetch_immed16
if istrue
mov wz pc
end
00011000 jr
z80_fetch_immed
#TODO: determine if this updates wz
sext 16 scratch1 scratch1
add scratch1 pc pc
cycles 5
001CC000 jr_cc
z80_check_cond C
z80_fetch_immed
if istrue
sext 16 scratch1 scratch1
add scratch1 pc pc
cycles 5
end
00010000 djnz
cycles 1
z80_fetch_immed
sub 1 b b
if b
sext 16 scratch1 scratch1
add scratch1 pc pc
cycles 5
end
11001101 call_uncond
z80_fetch_immed16
local pch 8
lsr pc 8 pch
meta high pch
meta low pc
z80_push
mov wz pc
11TTT111 rst
local pch 8
lsr pc 8 pch
meta high pch
meta low pc
z80_push
lsl T 3 scratch1
mov scratch1 pc
11001001 ret
#TODO: confirm this goes through wz
local wzh 16
meta high wzh
meta low wz
z80_pop
lsl wzh 8 wzh
or wzh wz wz
mov wz pc
11011011 in_abs
z80_fetch_immed
ocall io_read8
mov scratch1 a
ed 01RRR000 in_bc
lsl b 8 scratch1
or c scratch1 scratch1
ocall io_read8
mov scratch1 main.R
11010011 out_abs
z80_fetch_immed
mov scratch1 scratch2
mov a scratch1
ocall io_write8
ed 01RRR001 out_bc
lsl b 8 scratch2
or c scratch2 scratch2
mov main.R scratch1
ocall io_write8
00000111 rlca
rol a 1 a
update_flags YH0XN0C
00010111 rla
rlc a 1 a
update_flags YH0XN0C
00001111 rrca
ror a 1 a
update_flags YH0XN0C
00011111 rra
rrc a 1 a
update_flags YH0XN0C
cb 00000RRR rlc
rol main.R 1 main.R
update_flags SZYH0PXN0C
cb 00000110 rlc_hl
local tmp 8
z80_fetch_hl
mov scratch1 tmp
rol tmp 1 tmp
update_flags SZYH0PXN0C
mov tmp scratch1
z80_store_hl
z80_rlc_index
arg tmp 8
mov wz scratch1
ocall read_8
cycles 1
mov scratch1 tmp
rol tmp 1 tmp
update_flags SZYH0PXN0C
mov tmp scratch1
z80_store_index
ddcb 00000110 rlc_ixd
local tmp 8
z80_rlc_index tmp
ddcb 00000RRR rlc_ixd_reg
z80_rlc_index main.R
fdcb 00000110 rlc_iyd
local tmp 8
z80_rlc_index tmp
fdcb 00000RRR rlc_iyd_reg
z80_rlc_index main.R
cb 00010RRR rl
rlc main.R 1 main.R
update_flags SZYH0PXN0C
cb 00010110 rl_hl
local tmp 8
z80_fetch_hl
mov scratch1 tmp
rlc tmp 1 tmp
update_flags SZYH0PXN0C
mov tmp scratch1
z80_store_hl
z80_rl_index
arg tmp 8
mov wz scratch1
ocall read_8
cycles 1
mov scratch1 tmp
rlc tmp 1 tmp
update_flags SZYH0PXN0C
mov tmp scratch1
z80_store_index
ddcb 00010110 rl_ixd
local tmp 8
z80_rl_index tmp
fdcb 00010110 rl_iyd
local tmp 8
z80_rl_index tmp
ddcb 00010RRR rl_ixd_reg
z80_rl_index main.R
fdcb 00010RRR rl_iyd_reg
z80_rl_index main.R
cb 00001RRR rrc
ror main.R 1 main.R
update_flags SZYH0PXN0C
cb 00001110 rrc_hl
local tmp 8
z80_fetch_hl
mov scratch1 tmp
ror tmp 1 tmp
update_flags SZYH0PXN0C
mov tmp scratch1
z80_store_hl
z80_rrc_index
arg tmp 8
mov wz scratch1
ocall read_8
cycles 1
mov scratch1 tmp
ror tmp 1 tmp
update_flags SZYH0PXN0C
mov tmp scratch1
z80_store_index
ddcb 00001110 rrc_ixd
local tmp 8
z80_rrc_index tmp
ddcb 00001RRR rrc_ixd_reg
z80_rrc_index main.R
fdcb 00001110 rrc_iyd
local tmp 8
z80_rrc_index tmp
fdcb 00001RRR rrc_iyd_reg
z80_rrc_index main.R
cb 00011RRR rr
rrc main.R 1 main.R
update_flags SZYH0PXN0C
cb 00011110 rr_hl
local tmp 8
z80_fetch_hl
mov scratch1 tmp
rrc tmp 1 tmp
update_flags SZYH0PXN0C
mov tmp scratch1
z80_store_hl
z80_rr_index
arg tmp 8
mov wz scratch1
ocall read_8
cycles 1
mov scratch1 tmp
rrc tmp 1 tmp
update_flags SZYH0PXN0C
mov tmp scratch1
z80_store_index
ddcb 00011110 rr_ixd
local tmp 8
z80_rr_index tmp
ddcb 00011RRR rr_ixd_reg
z80_rr_index main.R
fdcb 00011110 rr_iyd
local tmp 8
z80_rr_index tmp
fdcb 00011RRR rr_iyd_reg
z80_rr_index main.R
cb 00100RRR sla
lsl main.R 1 main.R
update_flags SZYH0PXN0C
cb 00100110 sla_hl
local tmp 8
z80_fetch_hl
mov scratch1 tmp
lsl tmp 1 tmp
update_flags SZYH0PXN0C
mov tmp scratch1
z80_store_hl
z80_sla_index
arg tmp 8
mov wz scratch1
ocall read_8
cycles 1
mov scratch1 tmp
lsl tmp 1 tmp
update_flags SZYH0PXN0C
mov tmp scratch1
z80_store_index
ddcb 00100110 sla_ixd
local tmp 8
z80_sla_index tmp
ddcb 00100RRR sla_ixd_reg
z80_sla_index main.R
fdcb 00100110 sla_iyd
local tmp 8
z80_sla_index tmp
fdcb 00100RRR sla_iyd_reg
z80_sla_index main.R
cb 00101RRR sra
asr main.R 1 main.R
update_flags SZYH0PXN0C
cb 00101110 sra_hl
local tmp 8
z80_fetch_hl
mov scratch1 tmp
asr tmp 1 tmp
update_flags SZYH0PXN0C
mov tmp scratch1
z80_store_hl
z80_sra_index
arg tmp 8
mov wz scratch1
ocall read_8
cycles 1
mov scratch1 tmp
asr tmp 1 tmp
update_flags SZYH0PXN0C
mov tmp scratch1
z80_store_index
ddcb 00101110 sra_ixd
local tmp 8
z80_sra_index tmp
ddcb 00101RRR sra_ixd_reg
z80_sra_index main.R
fdcb 00101110 sra_iyd
local tmp 8
z80_sra_index tmp
fdcb 00101RRR sra_iyd_reg
z80_sra_index main.R
cb 00110RRR sll
lsl main.R 1 main.R
update_flags SZ0YH0XN0C
or 1 main.R main.R
update_flags P
cb 00110110 sll_hl
local tmp 8
z80_fetch_hl
mov scratch1 tmp
lsl tmp 1 tmp
update_flags SZ0YH0XN0C
or 1 tmp tmp
update_flags P
mov tmp scratch1
z80_store_hl
z80_sll_index
arg tmp 8
mov wz scratch1
ocall read_8
cycles 1
mov scratch1 tmp
lsl tmp 1 tmp
update_flags SZ0YH0XN0C
or 1 tmp tmp
update_flags P
mov tmp scratch1
z80_store_index
ddcb 00110110 sll_ixd
local tmp 8
z80_sll_index tmp
ddcb 00110RRR sll_ixd_reg
z80_sll_index main.R
fdcb 00110110 sll_iyd
local tmp 8
z80_sll_index tmp
fdcb 00110RRR sll_iyd_reg
z80_sll_index main.R
cb 00111RRR srl
lsr main.R 1 main.R
update_flags SZYH0PXN0C
cb 00111110 srl_hl
local tmp 8
z80_fetch_hl
mov scratch1 tmp
lsr tmp 1 tmp
update_flags SZYH0PXN0C
mov tmp scratch1
z80_store_hl
z80_srl_index
arg tmp 8
mov wz scratch1
ocall read_8
cycles 1
mov scratch1 tmp
lsr tmp 1 tmp
update_flags SZYH0PXN0C
mov tmp scratch1
z80_store_index
ddcb 00111110 srl_ixd
local tmp 8
z80_srl_index tmp
ddcb 00111RRR srl_ixd_reg
z80_srl_index main.R
fdcb 00111110 srl_iyd
local tmp 8
z80_srl_index tmp
fdcb 00111RRR srl_iyd_reg
z80_srl_index main.R
|