forked from wwarthen/RomWBW
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTEST3225.ASM
1363 lines (1243 loc) · 32.2 KB
/
TEST3225.ASM
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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; $Id: test3225.asm 1.1 1993/08/02 01:24:21 toma Exp $
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; TASM test file
; Test all instructions and addressing modes.
; Processor: TMS320C25
;
.org 100h
shift: .equ 4
shift0: .equ 0
shiftmode: .equ 3 ;SPM instruction only
addr7: .equ 12h
addr9: .equ 123h
addr16: .equ 1234h
bit: .equ 05h
port: .equ 2
arp: .equ 3
nextarp: .equ 4
ar: .equ 1
const: .equ 34h
const1: .equ 1h
const8: .equ 0ffh
const13: .equ 0234h
const16: .equ 5678h
cmode: .equ 2
format: .equ 1
ABS
ADD *BR0+,shift,nextarp
ADD *BR0-,shift,nextarp
ADD *0+, shift,nextarp
ADD *0-, shift,nextarp
ADD *+, shift,nextarp
ADD *-, shift,nextarp
ADD *, shift,nextarp
ADD *BR0+,shift
ADD *BR0-,shift
ADD *0+, shift
ADD *0-, shift
ADD *+, shift
ADD *-, shift
ADD *, shift
ADD *BR0+
ADD *BR0-
ADD *0+
ADD *0-
ADD *+
ADD *-
ADD *
ADD addr7,shift
ADD addr7
ADDC *BR0+,nextarp
ADDC *BR0-,nextarp
ADDC *0+, nextarp
ADDC *0-, nextarp
ADDC *+, nextarp
ADDC *-, nextarp
ADDC *, nextarp
ADDC *BR0+
ADDC *BR0-
ADDC *0+
ADDC *0-
ADDC *+
ADDC *-
ADDC *
ADDC addr7
ADDH *BR0+,nextarp
ADDH *BR0-,nextarp
ADDH *0+, nextarp
ADDH *0-, nextarp
ADDH *+, nextarp
ADDH *-, nextarp
ADDH *, nextarp
ADDH *BR0+
ADDH *BR0-
ADDH *0+
ADDH *0-
ADDH *+
ADDH *-
ADDH *
ADDH addr7
ADDK const8
ADDS *BR0+,nextarp
ADDS *BR0-,nextarp
ADDS *0+, nextarp
ADDS *0-, nextarp
ADDS *+, nextarp
ADDS *-, nextarp
ADDS *, nextarp
ADDS *BR0+
ADDS *BR0-
ADDS *0+
ADDS *0-
ADDS *+
ADDS *-
ADDS *
ADDS addr7
ADDT *BR0+,nextarp
ADDT *BR0-,nextarp
ADDT *0+, nextarp
ADDT *0-, nextarp
ADDT *+, nextarp
ADDT *-, nextarp
ADDT *, nextarp
ADDT *BR0+
ADDT *BR0-
ADDT *0+
ADDT *0-
ADDT *+
ADDT *-
ADDT *
ADDT addr7
ADLK const16,shift
ADLK const16
ADLK 0
ADLK 1
ADLK 256
ADLK 512
ADLK $1234
ADLK $1234,0
ADRK const8
AND *BR0+,nextarp
AND *BR0-,nextarp
AND *0+, nextarp
AND *0-, nextarp
AND *+, nextarp
AND *-, nextarp
AND *, nextarp
AND *BR0+
AND *BR0-
AND *0+
AND *0-
AND *+
AND *-
AND *
AND addr7
ANDK const16,shift
ANDK const16
APAC
loop1:
B loop1,*BR0+,nextarp
B loop1,*BR0-,nextarp
B loop1,*0+, nextarp
B loop1,*0-, nextarp
B loop1,*+, nextarp
B loop1,*-, nextarp
B loop1,*, nextarp
B loop1,*BR0+
B loop1,*BR0-
B loop1,*0+
B loop1,*0-
B loop1,*+
B loop1,*-
B loop1,*
B loop1
BACC
BANZ loop1,*BR0+,nextarp
BANZ loop1,*BR0-,nextarp
BANZ loop1,*0+, nextarp
BANZ loop1,*0-, nextarp
BANZ loop1,*+, nextarp
BANZ loop1,*-, nextarp
BANZ loop1,*, nextarp
BANZ loop1,*BR0+
BANZ loop1,*BR0-
BANZ loop1,*0+
BANZ loop1,*0-
BANZ loop1,*+
BANZ loop1,*-
BANZ loop1,*
BANZ loop1
BBNZ loop1,*BR0+,nextarp
BBNZ loop1,*BR0-,nextarp
BBNZ loop1,*0+, nextarp
BBNZ loop1,*0-, nextarp
BBNZ loop1,*+, nextarp
BBNZ loop1,*-, nextarp
BBNZ loop1,*, nextarp
BBNZ loop1,*BR0+
BBNZ loop1,*BR0-
BBNZ loop1,*0+
BBNZ loop1,*0-
BBNZ loop1,*+
BBNZ loop1,*-
BBNZ loop1,*
BBNZ loop1
BBZ loop1,*BR0+,nextarp
BBZ loop1,*BR0-,nextarp
BBZ loop1,*0+, nextarp
BBZ loop1,*0-, nextarp
BBZ loop1,*+, nextarp
BBZ loop1,*-, nextarp
BBZ loop1,*, nextarp
BBZ loop1,*BR0+
BBZ loop1,*BR0-
BBZ loop1,*0+
BBZ loop1,*0-
BBZ loop1,*+
BBZ loop1,*-
BBZ loop1,*
BBZ loop1
BC loop1,*BR0+,nextarp
BC loop1,*BR0-,nextarp
BC loop1,*0+, nextarp
BC loop1,*0-, nextarp
BC loop1,*+, nextarp
BC loop1,*-, nextarp
BC loop1,*, nextarp
BC loop1,*BR0+
BC loop1,*BR0-
BC loop1,*0+
BC loop1,*0-
BC loop1,*+
BC loop1,*-
BC loop1,*
BC loop1
BGEZ loop1,*BR0+,nextarp
BGEZ loop1,*BR0-,nextarp
BGEZ loop1,*0+, nextarp
BGEZ loop1,*0-, nextarp
BGEZ loop1,*+, nextarp
BGEZ loop1,*-, nextarp
BGEZ loop1,*, nextarp
BGEZ loop1,*BR0+
BGEZ loop1,*BR0-
BGEZ loop1,*0+
BGEZ loop1,*0-
BGEZ loop1,*+
BGEZ loop1,*-
BGEZ loop1,*
BGEZ loop1
BGZ loop1,*BR0+,nextarp
BGZ loop1,*BR0-,nextarp
BGZ loop1,*0+, nextarp
BGZ loop1,*0-, nextarp
BGZ loop1,*+, nextarp
BGZ loop1,*-, nextarp
BGZ loop1,*, nextarp
BGZ loop1,*BR0+
BGZ loop1,*BR0-
BGZ loop1,*0+
BGZ loop1,*0-
BGZ loop1,*+
BGZ loop1,*-
BGZ loop1,*
BGZ loop1
BIOZ loop1,*BR0+,nextarp
BIOZ loop1,*BR0-,nextarp
BIOZ loop1,*0+, nextarp
BIOZ loop1,*0-, nextarp
BIOZ loop1,*+, nextarp
BIOZ loop1,*-, nextarp
BIOZ loop1,*, nextarp
BIOZ loop1,*BR0+
BIOZ loop1,*BR0-
BIOZ loop1,*0+
BIOZ loop1,*0-
BIOZ loop1,*+
BIOZ loop1,*-
BIOZ loop1,*
BIOZ loop1
BLEZ loop1,*BR0+,nextarp
BLEZ loop1,*BR0-,nextarp
BLEZ loop1,*0+, nextarp
BLEZ loop1,*0-, nextarp
BLEZ loop1,*+, nextarp
BLEZ loop1,*-, nextarp
BLEZ loop1,*, nextarp
BLEZ loop1,*BR0+
BLEZ loop1,*BR0-
BLEZ loop1,*0+
BLEZ loop1,*0-
BLEZ loop1,*+
BLEZ loop1,*-
BLEZ loop1,*
BLEZ loop1
BLZ loop1,*BR0+,nextarp
BLZ loop1,*BR0-,nextarp
BLZ loop1,*0+, nextarp
BLZ loop1,*0-, nextarp
BLZ loop1,*+, nextarp
BLZ loop1,*-, nextarp
BLZ loop1,*, nextarp
BLZ loop1,*BR0+
BLZ loop1,*BR0-
BLZ loop1,*0+
BLZ loop1,*0-
BLZ loop1,*+
BLZ loop1,*-
BLZ loop1,*
BLZ loop1
BNC loop1,*BR0+,nextarp
BNC loop1,*BR0-,nextarp
BNC loop1,*0+, nextarp
BNC loop1,*0-, nextarp
BNC loop1,*+, nextarp
BNC loop1,*-, nextarp
BNC loop1,*, nextarp
BNC loop1,*BR0+
BNC loop1,*BR0-
BNC loop1,*0+
BNC loop1,*0-
BNC loop1,*+
BNC loop1,*-
BNC loop1,*
BNC loop1
BNV loop1,*BR0+,nextarp
BNV loop1,*BR0-,nextarp
BNV loop1,*0+, nextarp
BNV loop1,*0-, nextarp
BNV loop1,*+, nextarp
BNV loop1,*-, nextarp
BNV loop1,*, nextarp
BNV loop1,*BR0+
BNV loop1,*BR0-
BNV loop1,*0+
BNV loop1,*0-
BNV loop1,*+
BNV loop1,*-
BNV loop1,*
BNV loop1
BNZ loop1,*BR0+,nextarp
BNZ loop1,*BR0-,nextarp
BNZ loop1,*0+, nextarp
BNZ loop1,*0-, nextarp
BNZ loop1,*+, nextarp
BNZ loop1,*-, nextarp
BNZ loop1,*, nextarp
BNZ loop1,*BR0+
BNZ loop1,*BR0-
BNZ loop1,*0+
BNZ loop1,*0-
BNZ loop1,*+
BNZ loop1,*-
BNZ loop1,*
BNZ loop1
BV loop1,*BR0+,nextarp
BV loop1,*BR0-,nextarp
BV loop1,*0+, nextarp
BV loop1,*0-, nextarp
BV loop1,*+, nextarp
BV loop1,*-, nextarp
BV loop1,*, nextarp
BV loop1,*BR0+
BV loop1,*BR0-
BV loop1,*0+
BV loop1,*0-
BV loop1,*+
BV loop1,*-
BV loop1,*
BV loop1
BZ loop1,*BR0+,nextarp
BZ loop1,*BR0-,nextarp
BZ loop1,*0+, nextarp
BZ loop1,*0-, nextarp
BZ loop1,*+, nextarp
BZ loop1,*-, nextarp
BZ loop1,*, nextarp
BZ loop1,*BR0+
BZ loop1,*BR0-
BZ loop1,*0+
BZ loop1,*0-
BZ loop1,*+
BZ loop1,*-
BZ loop1,*
BZ loop1
BIT *BR0+,bit ,nextarp
BIT *BR0-,bit ,nextarp
BIT *0+, bit ,nextarp
BIT *0-, bit ,nextarp
BIT *+, bit ,nextarp
BIT *-, bit ,nextarp
BIT *, bit ,nextarp
BIT *BR0+,bit
BIT *BR0-,bit
BIT *0+, bit
BIT *0-, bit
BIT *+, bit
BIT *-, bit
BIT *, bit
BIT addr7,bit
BITT *BR0+,nextarp
BITT *BR0-,nextarp
BITT *0+, nextarp
BITT *0-, nextarp
BITT *+, nextarp
BITT *-, nextarp
BITT *, nextarp
BITT *BR0+
BITT *BR0-
BITT *0+
BITT *0-
BITT *+
BITT *-
BITT *
BITT addr7
BLKD addr16,*BR0+,nextarp
BLKD addr16,*BR0-,nextarp
BLKD addr16,*0+, nextarp
BLKD addr16,*0-, nextarp
BLKD addr16,*+, nextarp
BLKD addr16,*-, nextarp
BLKD addr16,*, nextarp
BLKD addr16,*BR0+
BLKD addr16,*BR0-
BLKD addr16,*0+
BLKD addr16,*0-
BLKD addr16,*+
BLKD addr16,*-
BLKD addr16,*
BLKD addr16,addr7
BLKP addr16,*BR0+,nextarp
BLKP addr16,*BR0-,nextarp
BLKP addr16,*0+, nextarp
BLKP addr16,*0-, nextarp
BLKP addr16,*+, nextarp
BLKP addr16,*-, nextarp
BLKP addr16,*, nextarp
BLKP addr16,*BR0+
BLKP addr16,*BR0-
BLKP addr16,*0+
BLKP addr16,*0-
BLKP addr16,*+
BLKP addr16,*-
BLKP addr16,*
BLKP addr16,addr7
CALA
CALL addr16,*BR0+,nextarp
CALL addr16,*BR0-,nextarp
CALL addr16,*0+, nextarp
CALL addr16,*0-, nextarp
CALL addr16,*+, nextarp
CALL addr16,*-, nextarp
CALL addr16,*, nextarp
CALL addr16,*BR0+
CALL addr16,*BR0-
CALL addr16,*0+
CALL addr16,*0-
CALL addr16,*+
CALL addr16,*-
CALL addr16,*
CALL addr16
CMPL
CMPR cmode
CNFD
CNFP
DINT
DMOV *BR0+,nextarp
DMOV *BR0-,nextarp
DMOV *0+, nextarp
DMOV *0-, nextarp
DMOV *+, nextarp
DMOV *-, nextarp
DMOV *, nextarp
DMOV *BR0+
DMOV *BR0-
DMOV *0+
DMOV *0-
DMOV *+
DMOV *-
DMOV *
DMOV addr7
EINT
FORT format
IDLE
IN *BR0+,port,nextarp
IN *BR0-,port,nextarp
IN *0+, port,nextarp
IN *0-, port,nextarp
IN *+, port,nextarp
IN *-, port,nextarp
IN *, port,nextarp
IN *BR0+,port
IN *BR0-,port
IN *0+, port
IN *0-, port
IN *+, port
IN *-, port
IN *, port
IN addr7,port
LAC *BR0+,shift,nextarp
LAC *BR0-,shift,nextarp
LAC *0+, shift,nextarp
LAC *0-, shift,nextarp
LAC *+, shift,nextarp
LAC *-, shift,nextarp
LAC *, shift,nextarp
LAC *BR0+,shift
LAC *BR0-,shift
LAC *0+, shift
LAC *0-, shift
LAC *+, shift
LAC *-, shift
LAC *, shift
LAC *BR0+
LAC *BR0-
LAC *0+
LAC *0-
LAC *+
LAC *-
LAC *
LAC addr7,shift
LAC addr7
LACK const8
LACT *BR0+,nextarp
LACT *BR0-,nextarp
LACT *0+, nextarp
LACT *0-, nextarp
LACT *+, nextarp
LACT *-, nextarp
LACT *, nextarp
LACT *BR0+
LACT *BR0-
LACT *0+
LACT *0-
LACT *+
LACT *-
LACT *
LACT addr7
LALK const16,shift
LALK const16
LAR arp,*BR0+,nextarp
LAR arp,*BR0-,nextarp
LAR arp,*0+, nextarp
LAR arp,*0-, nextarp
LAR arp,*+, nextarp
LAR arp,*-, nextarp
LAR arp,*, nextarp
LAR arp,*BR0+
LAR arp,*BR0-
LAR arp,*0+
LAR arp,*0-
LAR arp,*+
LAR arp,*-
LAR arp,*
LAR arp,addr7
LARK arp, const8
LARP arp
LDP *BR0+,nextarp
LDP *BR0-,nextarp
LDP *0+, nextarp
LDP *0-, nextarp
LDP *+, nextarp
LDP *-, nextarp
LDP *, nextarp
LDP *BR0+
LDP *BR0-
LDP *0+
LDP *0-
LDP *+
LDP *-
LDP *
LDP addr7
LDPK addr9
LPH *BR0+,nextarp
LPH *BR0-,nextarp
LPH *0+, nextarp
LPH *0-, nextarp
LPH *+, nextarp
LPH *-, nextarp
LPH *, nextarp
LPH *BR0+
LPH *BR0-
LPH *0+
LPH *0-
LPH *+
LPH *-
LPH *
LPH addr7
LRLK arp, const16
LST *BR0+,nextarp
LST *BR0-,nextarp
LST *0+, nextarp
LST *0-, nextarp
LST *+, nextarp
LST *-, nextarp
LST *, nextarp
LST *BR0+
LST *BR0-
LST *0+
LST *0-
LST *+
LST *-
LST *
LST addr7
LST1 *BR0+,nextarp
LST1 *BR0-,nextarp
LST1 *0+, nextarp
LST1 *0-, nextarp
LST1 *+, nextarp
LST1 *-, nextarp
LST1 *, nextarp
LST1 *BR0+
LST1 *BR0-
LST1 *0+
LST1 *0-
LST1 *+
LST1 *-
LST1 *
LST1 addr7
LT *BR0+,nextarp
LT *BR0-,nextarp
LT *0+, nextarp
LT *0-, nextarp
LT *+, nextarp
LT *-, nextarp
LT *, nextarp
LT *BR0+
LT *BR0-
LT *0+
LT *0-
LT *+
LT *-
LT *
LT addr7
LTA *BR0+,nextarp
LTA *BR0-,nextarp
LTA *0+, nextarp
LTA *0-, nextarp
LTA *+, nextarp
LTA *-, nextarp
LTA *, nextarp
LTA *BR0+
LTA *BR0-
LTA *0+
LTA *0-
LTA *+
LTA *-
LTA *
LTA addr7
LTD *BR0+,nextarp
LTD *BR0-,nextarp
LTD *0+, nextarp
LTD *0-, nextarp
LTD *+, nextarp
LTD *-, nextarp
LTD *, nextarp
LTD *BR0+
LTD *BR0-
LTD *0+
LTD *0-
LTD *+
LTD *-
LTD *
LTD addr7
LTP *BR0+,nextarp
LTP *BR0-,nextarp
LTP *0+, nextarp
LTP *0-, nextarp
LTP *+, nextarp
LTP *-, nextarp
LTP *, nextarp
LTP *BR0+
LTP *BR0-
LTP *0+
LTP *0-
LTP *+
LTP *-
LTP *
LTP addr7
LTS *BR0+,nextarp
LTS *BR0-,nextarp
LTS *0+, nextarp
LTS *0-, nextarp
LTS *+, nextarp
LTS *-, nextarp
LTS *, nextarp
LTS *BR0+
LTS *BR0-
LTS *0+
LTS *0-
LTS *+
LTS *-
LTS *
LTS addr7
MAC addr16,*BR0+,nextarp
MAC addr16,*BR0-,nextarp
MAC addr16,*0+, nextarp
MAC addr16,*0-, nextarp
MAC addr16,*+, nextarp
MAC addr16,*-, nextarp
MAC addr16,*, nextarp
MAC addr16,*BR0+
MAC addr16,*BR0-
MAC addr16,*0+
MAC addr16,*0-
MAC addr16,*+
MAC addr16,*-
MAC addr16,*
MAC addr16,addr7
MACD addr16,*BR0+,nextarp
MACD addr16,*BR0-,nextarp
MACD addr16,*0+, nextarp
MACD addr16,*0-, nextarp
MACD addr16,*+, nextarp
MACD addr16,*-, nextarp
MACD addr16,*, nextarp
MACD addr16,*BR0+
MACD addr16,*BR0-
MACD addr16,*0+
MACD addr16,*0-
MACD addr16,*+
MACD addr16,*-
MACD addr16,*
MACD addr16,addr7
MAR *BR0+,nextarp
MAR *BR0-,nextarp
MAR *0+, nextarp
MAR *0-, nextarp
MAR *+, nextarp
MAR *-, nextarp
MAR *, nextarp
MAR *BR0+
MAR *BR0-
MAR *0+
MAR *0-
MAR *+
MAR *-
MAR *
MAR addr7
MPY *BR0+,nextarp
MPY *BR0-,nextarp
MPY *0+, nextarp
MPY *0-, nextarp
MPY *+, nextarp
MPY *-, nextarp
MPY *, nextarp
MPY *BR0+
MPY *BR0-
MPY *0+
MPY *0-
MPY *+
MPY *-
MPY *
MPY addr7
MPYA *BR0+,nextarp
MPYA *BR0-,nextarp
MPYA *0+, nextarp
MPYA *0-, nextarp
MPYA *+, nextarp
MPYA *-, nextarp
MPYA *, nextarp
MPYA *BR0+
MPYA *BR0-
MPYA *0+
MPYA *0-
MPYA *+
MPYA *-
MPYA *
MPYA addr7
MPYK const13
MPYS *BR0+,nextarp
MPYS *BR0-,nextarp
MPYS *0+, nextarp
MPYS *0-, nextarp
MPYS *+, nextarp
MPYS *-, nextarp
MPYS *, nextarp
MPYS *BR0+
MPYS *BR0-
MPYS *0+
MPYS *0-
MPYS *+
MPYS *-
MPYS *
MPYS addr7
MPYU *BR0+,nextarp
MPYU *BR0-,nextarp
MPYU *0+, nextarp
MPYU *0-, nextarp
MPYU *+, nextarp
MPYU *-, nextarp
MPYU *, nextarp
MPYU *BR0+
MPYU *BR0-
MPYU *0+
MPYU *0-
MPYU *+
MPYU *-
MPYU *
MPYU addr7
NEG
NOP
NORM *BR0+
NORM *BR0-
NORM *0+
NORM *0-
NORM *+
NORM *-
NORM *
NORM
OR *BR0+,nextarp
OR *BR0-,nextarp
OR *0+, nextarp
OR *0-, nextarp
OR *+, nextarp
OR *-, nextarp
OR *, nextarp
OR *BR0+
OR *BR0-
OR *0+
OR *0-
OR *+
OR *-
OR *
OR addr7
ORK const16, shift
ORK const16
OUT *BR0+,port,nextarp
OUT *BR0-,port,nextarp
OUT *0+, port,nextarp
OUT *0-, port,nextarp
OUT *+, port,nextarp
OUT *-, port,nextarp
OUT *, port,nextarp
OUT *BR0+,port
OUT *BR0-,port
OUT *0+, port
OUT *0-, port
OUT *+, port
OUT *-, port
OUT *, port
OUT addr7,port
PAC
POP
POPD *BR0+,nextarp
POPD *BR0-,nextarp
POPD *0+, nextarp
POPD *0-, nextarp
POPD *+, nextarp
POPD *-, nextarp
POPD *, nextarp
POPD *BR0+
POPD *BR0-
POPD *0+
POPD *0-
POPD *+
POPD *-
POPD *
POPD addr7
PSHD *BR0+,nextarp
PSHD *BR0-,nextarp
PSHD *0+, nextarp
PSHD *0-, nextarp
PSHD *+, nextarp
PSHD *-, nextarp
PSHD *, nextarp
PSHD *BR0+
PSHD *BR0-
PSHD *0+
PSHD *0-
PSHD *+
PSHD *-
PSHD *
PSHD addr7
PUSH
RC
RET
RFSM
RHM
ROL
ROR
ROVM
RPT *BR0+,nextarp
RPT *BR0-,nextarp
RPT *0+, nextarp
RPT *0-, nextarp
RPT *+, nextarp
RPT *-, nextarp
RPT *, nextarp
RPT *BR0+
RPT *BR0-
RPT *0+
RPT *0-
RPT *+
RPT *-
RPT *
RPT addr7
RPTK const8
RSXM
RTC
RTXM
RXF
SACH *BR0+,shift,nextarp
SACH *BR0-,shift,nextarp
SACH *0+, shift,nextarp
SACH *0-, shift,nextarp
SACH *+, shift,nextarp
SACH *-, shift,nextarp
SACH *, shift,nextarp
SACH *BR0+,shift
SACH *BR0-,shift
SACH *0+, shift
SACH *0-, shift
SACH *+, shift
SACH *-, shift
SACH *, shift
SACH *BR0+
SACH *BR0-
SACH *0+
SACH *0-
SACH *+
SACH *-
SACH *
SACH addr7,shift
SACH addr7
SACL *BR0+,shift,nextarp
SACL *BR0-,shift,nextarp
SACL *0+, shift,nextarp
SACL *0-, shift,nextarp