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
|
;;; z80 emulator for 68k calculators
;;; Duncan Smith
;;; Project started: 2010-06-06
;;; GPL
;;; Registers used:
;;;
;;; A7 = sp
;;; A6 = address space base pointer
;;; A3 = instruction table base pointer
;;; A2 = pseudo return address (for emulation core, to emulate prefix
;;; instructions properly)
;;;
;;; D0,D1 = scratch
;;;
;;; D2 = emulated SP, PC SP high, PC low - both virtual addresses
;;;
;;; The following have their shadows in the top half of the register
;;; D3 = AF A is in the low byte, F in the high byte (yeah ... speed)
;;; D4 = BC B high, C low
;;; D5 = DE D high, E low
;;; D6 = HL H high, L low
;;;
;;; IY is used more often so it's easier to get at. It can be slow
;;; but I don't really care to go to the effort to make it so.
;;; D7 = IX (hi), IY (low)
;;; emulated I and R are both in RAM
xdef _ti89
; xdef _ti92plus
xdef _main
xdef _nostub
include "../tios.h"
;; Macro to read a byte from main memory at register \1. Puts
;; the byte read in \2.
FETCHB MACRO
move.b (\1.w,a6),\2
ENDM
;; Macro to write a byte in \1 to main memory at \2 (regs only)
PUTB MACRO
move.b \1,(\2,a6)
ENDM
;; Macro to read a word from main memory at register \1
;; (unaligned). Puts the word read in \2.
FETCHW MACRO
move.b (\1.w,a6),\2
rol.w 8,\2
move.b 1(\1.w,a6),\2
ENDM
;; Macro to write a word in \1 to main memory at \2 (regs only)
PUTW MACRO
move.b \1,(\2,a6)
ENDM
;; Macro to read an immediate byte into \2.
FETCHBI MACRO
addq.w #1,d2
move.b -1(d2.w,a6),\2
ENDM
;; Macro to read an immediate word (unaligned) into \2.
FETCHWI MACRO
addq.w 2,d2
move.b -2(d2.w,a6),\2
rol.w 8,d2
move.b -1(d2.w,a6),\2
ENDM
;; When you want to use the high reg of a pair, use this first
LOHI MACRO
ror 8,\1
ENDM
;; Then do your shit and finish with this
HILO MACRO
rol 8,\1
ENDM
DONE MACRO
jmp (a2)
ENDM
_main:
bsr emu_setup
rts
emu_setup:
eor.l a5,a5
eor.l a4,a4
movea emu_instr_table,a3
movea emu_fetch(pc),a2
;; FIXME
refresh: ; screen refresh routine
;; FIXME
rts
emu_fetch:
move.b (a4)+,d0
jsr d0(A3)
emu_instr_table:
dc.w emu_op_00
dc.w emu_op_01
dc.w emu_op_02
dc.w emu_op_03
dc.w emu_op_04
dc.w emu_op_05
dc.w emu_op_06
dc.w emu_op_07
dc.w emu_op_08
dc.w emu_op_09
dc.w emu_op_0a
dc.w emu_op_0b
dc.w emu_op_0c
dc.w emu_op_0d
dc.w emu_op_0e
dc.w emu_op_0f
dc.w emu_op_10
dc.w emu_op_11
dc.w emu_op_12
dc.w emu_op_13
dc.w emu_op_14
dc.w emu_op_15
dc.w emu_op_16
dc.w emu_op_17
dc.w emu_op_18
dc.w emu_op_19
dc.w emu_op_1a
dc.w emu_op_1b
dc.w emu_op_1c
dc.w emu_op_1d
dc.w emu_op_1e
dc.w emu_op_1f
dc.w emu_op_20
dc.w emu_op_21
dc.w emu_op_22
dc.w emu_op_23
dc.w emu_op_24
dc.w emu_op_25
dc.w emu_op_26
dc.w emu_op_27
dc.w emu_op_28
dc.w emu_op_29
dc.w emu_op_2a
dc.w emu_op_2b
dc.w emu_op_2c
dc.w emu_op_2d
dc.w emu_op_2e
dc.w emu_op_2f
dc.w emu_op_30
dc.w emu_op_31
dc.w emu_op_32
dc.w emu_op_33
dc.w emu_op_34
dc.w emu_op_35
dc.w emu_op_36
dc.w emu_op_37
dc.w emu_op_38
dc.w emu_op_39
dc.w emu_op_3a
dc.w emu_op_3b
dc.w emu_op_3c
dc.w emu_op_3d
dc.w emu_op_3e
dc.w emu_op_3f
dc.w emu_op_40
dc.w emu_op_41
dc.w emu_op_42
dc.w emu_op_43
dc.w emu_op_44
dc.w emu_op_45
dc.w emu_op_46
dc.w emu_op_47
dc.w emu_op_48
dc.w emu_op_49
dc.w emu_op_4a
dc.w emu_op_4b
dc.w emu_op_4c
dc.w emu_op_4d
dc.w emu_op_4e
dc.w emu_op_4f
dc.w emu_op_50
dc.w emu_op_51
dc.w emu_op_52
dc.w emu_op_53
dc.w emu_op_54
dc.w emu_op_55
dc.w emu_op_56
dc.w emu_op_57
dc.w emu_op_58
dc.w emu_op_59
dc.w emu_op_5a
dc.w emu_op_5b
dc.w emu_op_5c
dc.w emu_op_5d
dc.w emu_op_5e
dc.w emu_op_5f
dc.w emu_op_60
dc.w emu_op_61
dc.w emu_op_62
dc.w emu_op_63
dc.w emu_op_64
dc.w emu_op_65
dc.w emu_op_66
dc.w emu_op_67
dc.w emu_op_68
dc.w emu_op_69
dc.w emu_op_6a
dc.w emu_op_6b
dc.w emu_op_6c
dc.w emu_op_6d
dc.w emu_op_6e
dc.w emu_op_6f
dc.w emu_op_70
dc.w emu_op_71
dc.w emu_op_72
dc.w emu_op_73
dc.w emu_op_74
dc.w emu_op_75
dc.w emu_op_76
dc.w emu_op_77
dc.w emu_op_78
dc.w emu_op_79
dc.w emu_op_7a
dc.w emu_op_7b
dc.w emu_op_7c
dc.w emu_op_7d
dc.w emu_op_7e
dc.w emu_op_7f
dc.w emu_op_80
dc.w emu_op_81
dc.w emu_op_82
dc.w emu_op_83
dc.w emu_op_84
dc.w emu_op_85
dc.w emu_op_86
dc.w emu_op_87
dc.w emu_op_88
dc.w emu_op_89
dc.w emu_op_8a
dc.w emu_op_8b
dc.w emu_op_8c
dc.w emu_op_8d
dc.w emu_op_8e
dc.w emu_op_8f
dc.w emu_op_90
dc.w emu_op_91
dc.w emu_op_92
dc.w emu_op_93
dc.w emu_op_94
dc.w emu_op_95
dc.w emu_op_96
dc.w emu_op_97
dc.w emu_op_98
dc.w emu_op_99
dc.w emu_op_9a
dc.w emu_op_9b
dc.w emu_op_9c
dc.w emu_op_9d
dc.w emu_op_9e
dc.w emu_op_9f
dc.w emu_op_a0
dc.w emu_op_a1
dc.w emu_op_a2
dc.w emu_op_a3
dc.w emu_op_a4
dc.w emu_op_a5
dc.w emu_op_a6
dc.w emu_op_a7
dc.w emu_op_a8
dc.w emu_op_a9
dc.w emu_op_aa
dc.w emu_op_ab
dc.w emu_op_ac
dc.w emu_op_ad
dc.w emu_op_ae
dc.w emu_op_af
dc.w emu_op_b0
dc.w emu_op_b1
dc.w emu_op_b2
dc.w emu_op_b3
dc.w emu_op_b4
dc.w emu_op_b5
dc.w emu_op_b6
dc.w emu_op_b7
dc.w emu_op_b8
dc.w emu_op_b9
dc.w emu_op_ba
dc.w emu_op_bb
dc.w emu_op_bc
dc.w emu_op_bd
dc.w emu_op_be
dc.w emu_op_bf
dc.w emu_op_c0
dc.w emu_op_c1
dc.w emu_op_c2
dc.w emu_op_c3
dc.w emu_op_c4
dc.w emu_op_c5
dc.w emu_op_c6
dc.w emu_op_c7
dc.w emu_op_c8
dc.w emu_op_c9
dc.w emu_op_ca
dc.w emu_op_cb
dc.w emu_op_cc
dc.w emu_op_cd
dc.w emu_op_ce
dc.w emu_op_cf
dc.w emu_op_d0
dc.w emu_op_d1
dc.w emu_op_d2
dc.w emu_op_d3
dc.w emu_op_d4
dc.w emu_op_d5
dc.w emu_op_d6
dc.w emu_op_d7
dc.w emu_op_d8
dc.w emu_op_d9
dc.w emu_op_da
dc.w emu_op_db
dc.w emu_op_dc
dc.w emu_op_dd
dc.w emu_op_de
dc.w emu_op_df
dc.w emu_op_e0
dc.w emu_op_e1
dc.w emu_op_e2
dc.w emu_op_e3
dc.w emu_op_e4
dc.w emu_op_e5
dc.w emu_op_e6
dc.w emu_op_e7
dc.w emu_op_e8
dc.w emu_op_e9
dc.w emu_op_ea
dc.w emu_op_eb
dc.w emu_op_ec
dc.w emu_op_ed
dc.w emu_op_ee
dc.w emu_op_ef
dc.w emu_op_f0
dc.w emu_op_f1
dc.w emu_op_f2
dc.w emu_op_f3
dc.w emu_op_f4
dc.w emu_op_f5
dc.w emu_op_f6
dc.w emu_op_f7
dc.w emu_op_f8
dc.w emu_op_f9
dc.w emu_op_fa
dc.w emu_op_fb
dc.w emu_op_fc
dc.w emu_op_fd
dc.w emu_op_fe
dc.w emu_op_ff
;;; http://z80.info/z80oplist.txt
emu_op_00:
;; NOP
DONE
emu_op_01:
;; LD BC,immed.w
;; Read a word and put it in BC
;; XXX Check that this does not zero the top of the register
;; XXX proof against alignment
FETCHWI d4
DONE
emu_op_02:
;; LD (BC),A
;; Move A to BC, zero top of BC (effectively A -> C?)
;; XXX Do this
DONE
emu_op_03:
;; INC BC
;; BC <- BC+1
addq.w #1,d4
DONE
emu_op_04:
;; INC B
;; B <- B+1
LOHI d4
addq.b #1,d4
HILO d4
DONE
emu_op_05:
;; DEC B
;; B <- B-1
LOHI d4
subq.b #1,d4
HILO d4
DONE
emu_op_06:
;; LD B,immed.b
;; Read a byte and put it in B
;; XXX Check that this does not zero the top of the register
LOHI d4
FETCHBI d4
HILO d4
DONE
emu_op_07:
;; RLCA
;; Rotate A left, carry bit gets top bit
roxl.b d3,1
DONE
emu_op_08:
;; EX AF,AF'
swap d3
DONE
emu_op_09:
;; ADD HL,BC
;; HL <- HL+BC
add.w d4,d6
DONE
emu_op_0a:
;; LD A,(BC)
;; A <- (BC)
FETCHB d4
move.b d0,d3
DONE
emu_op_0b:
;; DEC BC
;; BC <- BC-1
subq.w #1,d4
DONE
emu_op_0c:
;; INC C
;; C <- C+1
addq.b #1,d4
DONE
emu_op_0d:
;; DEC C
;; C <- C-1
subq.b #1,d4
DONE
emu_op_0e:
;; LD C,immed.b
FETCHBI d4
DONE
emu_op_0f:
;; RRCA
;; Rotate A right, carry bit gets top bit
roxr.b d3,1
DONE
emu_op_10:
;; DJNZ immed.w
;; Decrement B
;; and branch by immed.b
;; if B not zero
LOHI d4
subq.b #1,d4
HILO d4
beq emu_op_10_end ; slooooow
FETCHBI d0
add.w d0,d2
emu_op_10_end:
DONE
emu_op_11:
;; LD DE,immed.w
;; XXX proof against alignment
FETCHWI d5
DONE
emu_op_12:
;; LD (DE),A
move.b (a0,d5.w),d3
DONE
emu_op_13:
;; INC DE
addq.w #1,d5
DONE
emu_op_14:
;; INC D
LOHI d5
addq.b #1,d5
HILO d5
DONE
emu_op_15:
;; DEC D
LOHI d5
subq.b #1,d5
HILO d5
DONE
emu_op_16:
;; LD D,immed.b
LOHI d5
FETCHBI d5
HILO d5
DONE
emu_op_17:
;; RLA
rol.b 1,d3
DONE
emu_op_18:
;; JR
;; Branch relative by a signed immediate byte
FETCHBI d0
add.w d0,d2
DONE
emu_op_19:
;; ADD HL,DE
;; HL <- HL+DE
add.w d5,d6
DONE
emu_op_1a:
;; LDAX D
;; A <- (DE)
FETCHB d5,d3
DONE
emu_op_1b:
;; DEC DE
subq.w #1,d5
DONE
emu_op_1c:
;; INC E
addq.b #1,d5
DONE
emu_op_1d:
;; DEC E
subq.b #1,d5
DONE
emu_op_1e:
;; LD E,immed.b
FETCHBI d5
DONE
emu_op_1f:
;; RRA
ror.b d3
DONE
emu_op_20:
;; JR NZ,immed.b
;; if ~Z,
;; PC <- PC+immed.b
;; SPEED can be made faster
beq emu_op_10_end
FETCHBI d0
add.w d0,d2
emu_op_10_end:
DONE
emu_op_21:
;; LD HL,immed.w
FETCHWI d6
DONE
emu_op_22:
;; LD immed.w,HL
;; (address) <- HL
FETCHWI d0
PUTW d6,d0
emu_op_23:
;; INC HL
addq.w #1,d6
DONE
emu_op_24:
;; INC H
LOHI d6
addq.b #1,d6
HILO d6
DONE
emu_op_25:
;; DEC H
LOHI d6
subq.b #1,d6
HILO d6
DONE
emu_op_26:
;; LD H,immed.b
LOHI d6
FETCHBI d6
HILO d6
DONE
emu_op_27:
;; DAA
;; Decrement, adjust accum
;; http://www.z80.info/z80syntx.htm#DAA
;; XXX DO THIS
DONE
emu_op_28:
;; JR Z,immed.b
;; If zero
;; PC <- PC+immed.b
;; SPEED can be made faster
beq emu_op_28_end
FETCHBI d0
add.w d0,d2
emu_op_28_end:
DONE
emu_op_29:
;; ADD HL,HL
add.w d6,d6
DONE
emu_op_2a:
;; LD HL,(immed.w)
;; address is absolute
FETCHWI d0
FETCHW d0,d6
DONE
emu_op_2b:
;; DEC HL
subq.w #1,d6
DONE
emu_op_2c:
;; INC L
addq.b #1,d6
DONE
emu_op_2d:
;; DEC L
subq.b #1,d6
DONE
emu_op_2e:
;; LD L,immed.b
FETCHBI d6
DONE
emu_op_2f:
;; CPL
;; A <- NOT A
not.b d3
DONE
emu_op_30:
;; JR NC,immed.b
;; If carry clear
;; PC <- PC+immed.b
bcs emu_op_30_end
FETCHBI d0
add.w d0,d2
emu_op_30_end:
DONE
emu_op_31:
;; LD SP,immed.w
swap d2
FETCHWI d2
swap d2
DONE
emu_op_32:
;; LD (immed.w),A
;; store indirect
FETCHWI d0
PUTB d3,d0
DONE
emu_op_33:
;; INC SP
swap d2
addq.w #1,d2
swap d2
DONE
emu_op_34:
;; INC (HL)
;; Increment byte
;; SPEED can be made faster
FETCHB d6
addq.b #1,d0
PUTB d0,d6
DONE
emu_op_35:
;; DEC (HL)
;; Decrement byte
;; SPEED can be made faster
FETCHB d6
subq.b #1,d0
PUTB d0,d6
DONE
emu_op_36:
;; LD (HL),immed.b
FETCHBI d0
PUTB d6,d0
DONE
emu_op_37:
;; SCF
;; Set Carry Flag
;; XXX DO THIS
DONE
emu_op_38:
;; JR C,immed.b
;; If carry set
;; PC <- PC+immed.b
bcc emu_op_38_end
FETCHBI d0
add.w d0,d2
emu_op_38_end:
DONE
emu_op_39:
;; ADD HL,SP
;; HL <- HL+SP
swap d2
add.w d6,d2
swap d2
DONE
emu_op_3a:
;; LD A,(immed.w)
FETCHWI d0
FETCHB d0,d3
DONE
emu_op_3b:
;; DEC SP
swap d2
subq.w #1,d2
swap d2
DONE
emu_op_3c:
;; INC A
addq.b #1,d3
DONE
emu_op_3d:
;; DEC A
subq.b #1,d3
DONE
emu_op_3e:
;; LD A,immed.b
FETCHBI d3
DONE
emu_op_3f:
;; CCF
;; Toggle carry flag
;; XXX DO THIS
DONE
emu_op_40:
;; LD B,B
;; SPEED
LOHI d4
move.b d4,d4
HILO d4
DONE
emu_op_41:
;; LD B,C
;; SPEED
move.b d4,d0
LOHI d4
move.b d0,d4
HILO d4
DONE
emu_op_42:
;; LD B,D
;; B <- D
move.w d5,d0
andi.w #ff00,d0
andi.w #00ff,d4
or.w d0,d4
DONE
emu_op_43:
;; LD B,E
;; B <- E
move.b d5,d0
asl.w #8,d0
andi.w #00ff,d4
or.w d0,d4
DONE
emu_op_44:
;; LD B,H
;; B <- H
move.w d6,d0
andi.w #ff00,d0
andi.w #00ff,d4
or.w d0,d4
DONE
emu_op_45:
;; LD B,L
;; B <- L
move.b d6,d0
lsl.w #8,d0
or.w d0,d4
DONE
emu_op_46:
;; LD B,(HL)
;; B <- (HL)
HILO d4
FETCHB d6,d4
LOHI d4
DONE
emu_op_47:
;; LD B,A
;; B <- A
HILO d4
move.b d3,d4
LOHI d4
DONE
emu_op_48:
;; LD C,B
;; C <- B
move.w d4,d0
lsr.w #8,d0
move.b d0,d4
DONE
emu_op_49:
;; LD C,C
move.b d4,d4
DONE
emu_op_4a:
emu_op_4b:
emu_op_4c:
emu_op_4d:
emu_op_4e:
emu_op_4f:
emu_op_50:
emu_op_51:
emu_op_52:
emu_op_53:
emu_op_54:
emu_op_55:
emu_op_56:
emu_op_57:
emu_op_58:
emu_op_59:
emu_op_5a:
emu_op_5b:
emu_op_5c:
emu_op_5d:
emu_op_5e:
emu_op_5f:
emu_op_60:
emu_op_61:
emu_op_62:
emu_op_63:
emu_op_64:
emu_op_65:
emu_op_66:
emu_op_67:
emu_op_68:
emu_op_69:
emu_op_6a:
emu_op_6b:
emu_op_6c:
emu_op_6d:
emu_op_6e:
emu_op_6f:
emu_op_70:
emu_op_71:
emu_op_72:
emu_op_73:
emu_op_74:
emu_op_75:
emu_op_76:
emu_op_77:
emu_op_78:
emu_op_79:
emu_op_7a:
emu_op_7b:
emu_op_7c:
emu_op_7d:
emu_op_7e:
emu_op_7f:
emu_op_80:
emu_op_81:
emu_op_82:
emu_op_83:
emu_op_84:
emu_op_85:
emu_op_86:
emu_op_87:
emu_op_88:
emu_op_89:
emu_op_8a:
emu_op_8b:
emu_op_8c:
emu_op_8d:
emu_op_8e:
emu_op_8f:
emu_op_90:
emu_op_91:
emu_op_92:
emu_op_93:
emu_op_94:
emu_op_95:
emu_op_96:
emu_op_97:
emu_op_98:
emu_op_99:
emu_op_9a:
emu_op_9b:
emu_op_9c:
emu_op_9d:
emu_op_9e:
emu_op_9f:
emu_op_a0:
emu_op_a1:
emu_op_a2:
emu_op_a3:
emu_op_a4:
emu_op_a5:
emu_op_a6:
emu_op_a7:
emu_op_a8:
emu_op_a9:
emu_op_aa:
emu_op_ab:
emu_op_ac:
emu_op_ad:
emu_op_ae:
emu_op_af:
emu_op_b0:
emu_op_b1:
emu_op_b2:
emu_op_b3:
emu_op_b4:
emu_op_b5:
emu_op_b6:
emu_op_b7:
emu_op_b8:
emu_op_b9:
emu_op_ba:
emu_op_bb:
emu_op_bc:
emu_op_bd:
emu_op_be:
emu_op_bf:
emu_op_c0:
emu_op_c1:
emu_op_c2:
emu_op_c3:
emu_op_c4:
emu_op_c5:
emu_op_c6:
emu_op_c7:
emu_op_c8:
emu_op_c9:
emu_op_ca:
emu_op_cb: ; prefix
movea.w emu_op_undo_cb(pc),a2
emu_op_cc:
emu_op_cd:
emu_op_ce:
emu_op_cf:
emu_op_d0:
emu_op_d1:
emu_op_d2:
emu_op_d3:
emu_op_d4:
emu_op_d5:
emu_op_d6:
emu_op_d7:
emu_op_d8:
emu_op_d9:
emu_op_da:
emu_op_db:
emu_op_dc:
emu_op_dd: ; prefix
;; swap IX, HL
movea.w emu_op_undo_dd(pc),a2
emu_op_de:
emu_op_df:
emu_op_e0:
emu_op_e1:
emu_op_e2:
emu_op_e3:
emu_op_e4:
emu_op_e5:
emu_op_e6:
emu_op_e7:
emu_op_e8:
emu_op_e9:
emu_op_ea:
emu_op_eb:
emu_op_ec:
emu_op_ed: ; prefix
movea.w emu_op_undo_ed(pc),a2
emu_op_ee:
emu_op_ef:
emu_op_f0:
emu_op_f1:
emu_op_f2:
emu_op_f3:
emu_op_f4:
emu_op_f5:
emu_op_f6:
emu_op_f7:
emu_op_f8:
emu_op_f9:
emu_op_fa:
emu_op_fb:
emu_op_fc:
emu_op_fd: ; prefix
;; swap IY, HL
movea.w emu_op_undo_fd(pc),a2
emu_op_fe:
emu_op_ff:
emu_op_undo_cb:
movea.w emu_fetch(pc),a2
emu_op_undo_dd:
emu_op_undo_ed:
emu_op_undo_fd:
|