summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.disasm/t09_xor.s
blob: 7b9e8c4bbdb8e94f9d08c3acd5933f31b8249e41 (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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;log_1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
	.h8300sx
	.text
	.global _start
_start:
    xor.b #0x12:8,r1h           ;d112
    xor.b #0x12:8,@er1          ;7d10d012
    xor.b #0x12:8,@(0x3:2,er1)    ;01776818d012
    xor.b #0x12:8,@er1+         ;01746c18d012
    xor.b #0x12:8,@-er1         ;01776c18d012
    xor.b #0x12:8,@+er1         ;01756c18d012
    xor.b #0x12:8,@er1-         ;01766c18d012
    xor.b #0x12:8,@(0x1234:16,er1)   ;01746e181234d012
    xor.b #0x12:8,@(0x12345678:32,er1)   ;78146a2812345678d012
    xor.b #0x12:8,@(0x1234:16,r2l.b) ;01756e281234d012
    xor.b #0x12:8,@(0x1234:16,r2.w) ;01766e281234d012
    xor.b #0x12:8,@(0x1234:16,er2.l) ;01776e281234d012
    xor.b #0x12:8,@(0x12345678:32,r2l.b) ;78256a2812345678d012
    xor.b #0x12:8,@(0x12345678:32,r2.w) ;78266a2812345678d012
    xor.b #0x12:8,@(0x12345678:32,er2.l) ;78276a2812345678d012
    xor.b #0x12:8,@0xffffff12:8         ;7f12d012
    xor.b #0x12:8,@0x1234:16        ;6a181234d012
    xor.b #0x12:8,@0x12345678:32        ;6a3812345678d012

    xor.b r3h,r1h              ;1531

    xor.b r3h,@er1            ;7d101530
    xor.b r3h,@(0x3:2,er1)      ;01793153
    xor.b r3h,@er1+           ;01798153
    xor.b r3h,@-er1           ;0179b153
    xor.b r3h,@+er1           ;01799153
    xor.b r3h,@er1-           ;0179a153
    xor.b r3h,@(0x1234:16,er1)     ;0179c1531234
    xor.b r3h,@(0x12345678:32,er1)     ;0179c95312345678
    xor.b r3h,@(0x1234:16,r2l.b)   ;0179d2531234
    xor.b r3h,@(0x1234:16,r2.w)   ;0179e2531234
    xor.b r3h,@(0x1234:16,er2.l)   ;0179f2531234
    xor.b r3h,@(0x12345678:32,r2l.b)   ;0179da5312345678
    xor.b r3h,@(0x12345678:32,r2.w)   ;0179ea5312345678
    xor.b r3h,@(0x12345678:32,er2.l)   ;0179fa5312345678
    xor.b r3h,@0xffffff12:8           ;7f121530
    xor.b r3h,@0x1234:16          ;6a1812341530
    xor.b r3h,@0x12345678:32           ;6a38123456781530

    xor.b @er3,r1h            ;7c301501
    xor.b @(0x3:2,er3),r1h     ;017a3351
    xor.b @er3+,r1h          ;017a8351
    xor.b @-er3,r1h          ;017ab351
    xor.b @+er3,r1h          ;017a9351
    xor.b @er3-,r1h          ;017aa351
    xor.b @(0x1234:16,er1),r1h     ;017ac1511234
    xor.b @(0x12345678:32,er1),r1h     ;017ac95112345678
    xor.b @(0x1234:16,r2l.b),r1h   ;017ad2511234
    xor.b @(0x1234:16,r2.w),r1h   ;017ae2511234
    xor.b @(0x1234:16,er2.l),r1h   ;017af2511234
    xor.b @(0x12345678:32,r2l.b),r1h   ;017ada5112345678
    xor.b @(0x12345678:32,r2.w),r1h   ;017aea5112345678
    xor.b @(0x12345678:32,er2.l),r1h   ;017afa5112345678
    xor.b @0xffffff12:8,r1h           ;7e121501
    xor.b @0x1234:16,r1h          ;6a1012341501
    xor.b @0x12345678:32,r1h          ;6a30123456781501

    xor.b @er3,@er1                                ;7c350150
    xor.b @er3,@(3:2,er1)                          ;7c353150
    xor.b @er3,@-er1                               ;7c35b150
    xor.b @er3,@er1+                               ;7c358150
    xor.b @er3,@er1-                               ;7c35a150
    xor.b @er3,@+er1                               ;7c359150
    xor.b @er3,@(0xffff9abc:16,er1)                ;7c35c1509abc
    xor.b @er3,@(0x9abcdef0:32,er1)                ;7c35c9509abcdef0
    xor.b @er3,@(0xffff9abc:16,r2l.b)              ;7c35d2509abc
    xor.b @er3,@(0xffff9abc:16,r2.w)              ;7c35e2509abc
    xor.b @er3,@(0xffff9abc:16,er2.l)              ;7c35f2509abc
    xor.b @er3,@(0x9abcdef0:32,r2l.b)              ;7c35da509abcdef0
    xor.b @er3,@(0x9abcdef0:32,r2.w)              ;7c35ea509abcdef0
    xor.b @er3,@(0x9abcdef0:32,er2.l)              ;7c35fa509abcdef0
    xor.b @er3,@0xffff9abc:16                      ;7c3540509abc
    xor.b @er3,@0x9abcdef0:32                      ;7c3548509abcdef0

    xor.b @-er3,@er1                               ;01776c3c0150
    xor.b @-er3,@(3:2,er1)                         ;01776c3c3150
    xor.b @-er3,@-er1                              ;01776c3cb150
    xor.b @-er3,@er1+                              ;01776c3c8150
    xor.b @-er3,@er1-                              ;01776c3ca150
    xor.b @-er3,@+er1                              ;01776c3c9150
    xor.b @-er3,@(0xffff9abc:16,er1)               ;01776c3cc1509abc
    xor.b @-er3,@(0x9abcdef0:32,er1)               ;01776c3cc9509abcdef0
    xor.b @-er3,@(0xffff9abc:16,r2l.b)             ;01776c3cd2509abc
    xor.b @-er3,@(0xffff9abc:16,r2.w)             ;01776c3ce2509abc
    xor.b @-er3,@(0xffff9abc:16,er2.l)             ;01776c3cf2509abc
    xor.b @-er3,@(0x9abcdef0:32,r2l.b)             ;01776c3cda509abcdef0
    xor.b @-er3,@(0x9abcdef0:32,r2.w)             ;01776c3cea509abcdef0
    xor.b @-er3,@(0x9abcdef0:32,er2.l)             ;01776c3cfa509abcdef0
    xor.b @-er3,@0xffff9abc:16                     ;01776c3c40509abc
    xor.b @-er3,@0x9abcdef0:32                     ;01776c3c48509abcdef0

    xor.b @er3+,@er1                               ;01746c3c0150
    xor.b @er3+,@(3:2,er1)                         ;01746c3c3150
    xor.b @er3+,@-er1                              ;01746c3cb150
    xor.b @er3+,@er1+                              ;01746c3c8150
    xor.b @er3+,@er1-                              ;01746c3ca150
    xor.b @er3+,@+er1                              ;01746c3c9150
    xor.b @er3+,@(0xffff9abc:16,er1)               ;01746c3cc1509abc
    xor.b @er3+,@(0x9abcdef0:32,er1)               ;01746c3cc9509abcdef0
    xor.b @er3+,@(0xffff9abc:16,r2l.b)             ;01746c3cd2509abc
    xor.b @er3+,@(0xffff9abc:16,r2.w)             ;01746c3ce2509abc
    xor.b @er3+,@(0xffff9abc:16,er2.l)             ;01746c3cf2509abc
    xor.b @er3+,@(0x9abcdef0:32,r2l.b)             ;01746c3cda509abcdef0
    xor.b @er3+,@(0x9abcdef0:32,r2.w)             ;01746c3cea509abcdef0
    xor.b @er3+,@(0x9abcdef0:32,er2.l)             ;01746c3cfa509abcdef0
    xor.b @er3+,@0xffff9abc:16                     ;01746c3c40509abc
    xor.b @er3+,@0x9abcdef0:32                     ;01746c3c48509abcdef0

    xor.b @er3-,@er1                               ;01766c3c0150
    xor.b @er3-,@(3:2,er1)                         ;01766c3c3150
    xor.b @er3-,@-er1                              ;01766c3cb150
    xor.b @er3-,@er1+                              ;01766c3c8150
    xor.b @er3-,@er1-                              ;01766c3ca150
    xor.b @er3-,@+er1                              ;01766c3c9150
    xor.b @er3-,@(0xffff9abc:16,er1)               ;01766c3cc1509abc
    xor.b @er3-,@(0x9abcdef0:32,er1)               ;01766c3cc9509abcdef0
    xor.b @er3-,@(0xffff9abc:16,r2l.b)             ;01766c3cd2509abc
    xor.b @er3-,@(0xffff9abc:16,r2.w)             ;01766c3ce2509abc
    xor.b @er3-,@(0xffff9abc:16,er2.l)             ;01766c3cf2509abc
    xor.b @er3-,@(0x9abcdef0:32,r2l.b)             ;01766c3cda509abcdef0
    xor.b @er3-,@(0x9abcdef0:32,r2.w)             ;01766c3cea509abcdef0
    xor.b @er3-,@(0x9abcdef0:32,er2.l)             ;01766c3cfa509abcdef0
    xor.b @er3-,@0xffff9abc:16                     ;01766c3c40509abc
    xor.b @er3-,@0x9abcdef0:32                     ;01766c3c48509abcdef0

    xor.b @+er3,@er1                               ;01756c3c0150
    xor.b @+er3,@(3:2,er1)                         ;01756c3c3150
    xor.b @+er3,@-er1                              ;01756c3cb150
    xor.b @+er3,@er1+                              ;01756c3c8150
    xor.b @+er3,@er1-                              ;01756c3ca150
    xor.b @+er3,@+er1                              ;01756c3c9150
    xor.b @+er3,@(0xffff9abc:16,er1)               ;01756c3cc1509abc
    xor.b @+er3,@(0x9abcdef0:32,er1)               ;01756c3cc9509abcdef0
    xor.b @+er3,@(0xffff9abc:16,r2l.b)             ;01756c3cd2509abc
    xor.b @+er3,@(0xffff9abc:16,r2.w)             ;01756c3ce2509abc
    xor.b @+er3,@(0xffff9abc:16,er2.l)             ;01756c3cf2509abc
    xor.b @+er3,@(0x9abcdef0:32,r2l.b)             ;01756c3cda509abcdef0
    xor.b @+er3,@(0x9abcdef0:32,r2.w)             ;01756c3cea509abcdef0
    xor.b @+er3,@(0x9abcdef0:32,er2.l)             ;01756c3cfa509abcdef0
    xor.b @+er3,@0xffff9abc:16                     ;01756c3c40509abc
    xor.b @+er3,@0x9abcdef0:32                     ;01756c3c48509abcdef0

    xor.b @(0x1234:16,er3),@er1                         ;01746e3c12340150
    xor.b @(0x1234:16,er3),@(3:2,er1)                   ;01746e3c12343150
    xor.b @(0x1234:16,er3),@-er1                        ;01746e3c1234b150
    xor.b @(0x1234:16,er3),@er1+                        ;01746e3c12348150
    xor.b @(0x1234:16,er3),@er1-                        ;01746e3c1234a150
    xor.b @(0x1234:16,er3),@+er1                        ;01746e3c12349150
    xor.b @(0x1234:16,er3),@(0xffff9abc:16,er1)         ;01746e3c1234c1509abc
    xor.b @(0x1234:16,er3),@(0x9abcdef0:32,er1)         ;01746e3c1234c9509abcdef0
    xor.b @(0x1234:16,er3),@(0xffff9abc:16,r2l.b)       ;01746e3c1234d2509abc
    xor.b @(0x1234:16,er3),@(0xffff9abc:16,r2.w)       ;01746e3c1234e2509abc
    xor.b @(0x1234:16,er3),@(0xffff9abc:16,er2.l)       ;01746e3c1234f2509abc
    xor.b @(0x1234:16,er3),@(0x9abcdef0:32,r2l.b)       ;01746e3c1234da509abcdef0
    xor.b @(0x1234:16,er3),@(0x9abcdef0:32,r2.w)       ;01746e3c1234ea509abcdef0
    xor.b @(0x1234:16,er3),@(0x9abcdef0:32,er2.l)       ;01746e3c1234fa509abcdef0
    xor.b @(0x1234:16,er3),@0xffff9abc:16               ;01746e3c123440509abc
    xor.b @(0x1234:16,er3),@0x9abcdef0:32               ;01746e3c123448509abcdef0

    xor.b @(0x12345678:32,er3),@er1                         ;78346a2c123456780150
    xor.b @(0x12345678:32,er3),@(3:2,er1)                   ;78346a2c123456783150
    xor.b @(0x12345678:32,er3),@-er1                        ;78346a2c12345678b150
    xor.b @(0x12345678:32,er3),@er1+                        ;78346a2c123456788150
    xor.b @(0x12345678:32,er3),@er1-                        ;78346a2c12345678a150
    xor.b @(0x12345678:32,er3),@+er1                        ;78346a2c123456789150
    xor.b @(0x12345678:32,er3),@(0xffff9abc:16,er1)         ;78346a2c12345678c1509abc
    xor.b @(0x12345678:32,er3),@(0x9abcdef0:32,er1)         ;78346a2c12345678c9509abcdef0
    xor.b @(0x12345678:32,er3),@(0xffff9abc:16,r2l.b)       ;78346a2c12345678d2509abc
    xor.b @(0x12345678:32,er3),@(0xffff9abc:16,r2.w)       ;78346a2c12345678e2509abc
    xor.b @(0x12345678:32,er3),@(0xffff9abc:16,er2.l)       ;78346a2c12345678f2509abc
    xor.b @(0x12345678:32,er3),@(0x9abcdef0:32,r2l.b)       ;78346a2c12345678da509abcdef0
    xor.b @(0x12345678:32,er3),@(0x9abcdef0:32,r2.w)       ;78346a2c12345678ea509abcdef0
    xor.b @(0x12345678:32,er3),@(0x9abcdef0:32,er2.l)       ;78346a2c12345678fa509abcdef0
    xor.b @(0x12345678:32,er3),@0xffff9abc:16               ;78346a2c1234567840509abc
    xor.b @(0x12345678:32,er3),@0x9abcdef0:32               ;78346a2c1234567848509abcdef0

    xor.b @(0x1234:16,r3l.b),@er1                       ;01756e3c12340150
    xor.b @(0x1234:16,r3l.b),@(3:2,er1)                 ;01756e3c12343150
    xor.b @(0x1234:16,r3l.b),@-er1                      ;01756e3c1234b150
    xor.b @(0x1234:16,r3l.b),@er1+                      ;01756e3c12348150
    xor.b @(0x1234:16,r3l.b),@er1-                      ;01756e3c1234a150
    xor.b @(0x1234:16,r3l.b),@+er1                      ;01756e3c12349150
    xor.b @(0x1234:16,r3l.b),@(0xffff9abc:16,er1)       ;01756e3c1234c1509abc
    xor.b @(0x1234:16,r3l.b),@(0x9abcdef0:32,er1)       ;01756e3c1234c9509abcdef0
    xor.b @(0x1234:16,r3l.b),@(0xffff9abc:16,r2l.b)     ;01756e3c1234d2509abc
    xor.b @(0x1234:16,r3l.b),@(0xffff9abc:16,r2.w)     ;01756e3c1234e2509abc
    xor.b @(0x1234:16,r3l.b),@(0xffff9abc:16,er2.l)     ;01756e3c1234f2509abc
    xor.b @(0x1234:16,r3l.b),@(0x9abcdef0:32,r2l.b)     ;01756e3c1234da509abcdef0
    xor.b @(0x1234:16,r3l.b),@(0x9abcdef0:32,r2.w)     ;01756e3c1234ea509abcdef0
    xor.b @(0x1234:16,r3l.b),@(0x9abcdef0:32,er2.l)     ;01756e3c1234fa509abcdef0
    xor.b @(0x1234:16,r3l.b),@0xffff9abc:16             ;01756e3c123440509abc
    xor.b @(0x1234:16,r3l.b),@0x9abcdef0:32             ;01756e3c123448509abcdef0

    xor.b @(0x1234:16,r3.w),@er1                       ;01766e3c12340150
    xor.b @(0x1234:16,r3.w),@(3:2,er1)                 ;01766e3c12343150
    xor.b @(0x1234:16,r3.w),@-er1                      ;01766e3c1234b150
    xor.b @(0x1234:16,r3.w),@er1+                      ;01766e3c12348150
    xor.b @(0x1234:16,r3.w),@er1-                      ;01766e3c1234a150
    xor.b @(0x1234:16,r3.w),@+er1                      ;01766e3c12349150
    xor.b @(0x1234:16,r3.w),@(0xffff9abc:16,er1)       ;01766e3c1234c1509abc
    xor.b @(0x1234:16,r3.w),@(0x9abcdef0:32,er1)       ;01766e3c1234c9509abcdef0
    xor.b @(0x1234:16,r3.w),@(0xffff9abc:16,r2l.b)     ;01766e3c1234d2509abc
    xor.b @(0x1234:16,r3.w),@(0xffff9abc:16,r2.w)     ;01766e3c1234e2509abc
    xor.b @(0x1234:16,r3.w),@(0xffff9abc:16,er2.l)     ;01766e3c1234f2509abc
    xor.b @(0x1234:16,r3.w),@(0x9abcdef0:32,r2l.b)     ;01766e3c1234da509abcdef0
    xor.b @(0x1234:16,r3.w),@(0x9abcdef0:32,r2.w)     ;01766e3c1234ea509abcdef0
    xor.b @(0x1234:16,r3.w),@(0x9abcdef0:32,er2.l)     ;01766e3c1234fa509abcdef0
    xor.b @(0x1234:16,r3.w),@0xffff9abc:16             ;01766e3c123440509abc
    xor.b @(0x1234:16,r3.w),@0x9abcdef0:32             ;01766e3c123448509abcdef0

    xor.b @(0x1234:16,er3.l),@er1                       ;01776e3c12340150
    xor.b @(0x1234:16,er3.l),@(3:2,er1)                 ;01776e3c12343150
    xor.b @(0x1234:16,er3.l),@-er1                      ;01776e3c1234b150
    xor.b @(0x1234:16,er3.l),@er1+                      ;01776e3c12348150
    xor.b @(0x1234:16,er3.l),@er1-                      ;01776e3c1234a150
    xor.b @(0x1234:16,er3.l),@+er1                      ;01776e3c12349150
    xor.b @(0x1234:16,er3.l),@(0xffff9abc:16,er1)       ;01776e3c1234c1509abc
    xor.b @(0x1234:16,er3.l),@(0x9abcdef0:32,er1)       ;01776e3c1234c9509abcdef0
    xor.b @(0x1234:16,er3.l),@(0xffff9abc:16,r2l.b)     ;01776e3c1234d2509abc
    xor.b @(0x1234:16,er3.l),@(0xffff9abc:16,r2.w)     ;01776e3c1234e2509abc
    xor.b @(0x1234:16,er3.l),@(0xffff9abc:16,er2.l)     ;01776e3c1234f2509abc
    xor.b @(0x1234:16,er3.l),@(0x9abcdef0:32,r2l.b)     ;01776e3c1234da509abcdef0
    xor.b @(0x1234:16,er3.l),@(0x9abcdef0:32,r2.w)     ;01776e3c1234ea509abcdef0
    xor.b @(0x1234:16,er3.l),@(0x9abcdef0:32,er2.l)     ;01776e3c1234fa509abcdef0
    xor.b @(0x1234:16,er3.l),@0xffff9abc:16             ;01776e3c123440509abc
    xor.b @(0x1234:16,er3.l),@0x9abcdef0:32             ;01776e3c123448509abcdef0

    xor.b @(0x12345678:32,r3l.b),@er1                       ;78356a2c123456780150
    xor.b @(0x12345678:32,r3l.b),@(3:2,er1)                 ;78356a2c123456783150
    xor.b @(0x12345678:32,r3l.b),@-er1                      ;78356a2c12345678b150
    xor.b @(0x12345678:32,r3l.b),@er1+                      ;78356a2c123456788150
    xor.b @(0x12345678:32,r3l.b),@er1-                      ;78356a2c12345678a150
    xor.b @(0x12345678:32,r3l.b),@+er1                      ;78356a2c123456789150
    xor.b @(0x12345678:32,r3l.b),@(0xffff9abc:16,er1)       ;78356a2c12345678c1509abc
    xor.b @(0x12345678:32,r3l.b),@(0x9abcdef0:32,er1)       ;78356a2c12345678c9509abcdef0
    xor.b @(0x12345678:32,r3l.b),@(0xffff9abc:16,r2l.b)     ;78356a2c12345678d2509abc
    xor.b @(0x12345678:32,r3l.b),@(0xffff9abc:16,r2.w)     ;78356a2c12345678e2509abc
    xor.b @(0x12345678:32,r3l.b),@(0xffff9abc:16,er2.l)     ;78356a2c12345678f2509abc
    xor.b @(0x12345678:32,r3l.b),@(0x9abcdef0:32,r2l.b)     ;78356a2c12345678da509abcdef0
    xor.b @(0x12345678:32,r3l.b),@(0x9abcdef0:32,r2.w)     ;78356a2c12345678ea509abcdef0
    xor.b @(0x12345678:32,r3l.b),@(0x9abcdef0:32,er2.l)     ;78356a2c12345678fa509abcdef0
    xor.b @(0x12345678:32,r3l.b),@0xffff9abc:16             ;78356a2c1234567840509abc
    xor.b @(0x12345678:32,r3l.b),@0x9abcdef0:32             ;78356a2c1234567848509abcdef0

    xor.b @(0x12345678:32,r3.w),@er1                       ;78366a2c123456780150
    xor.b @(0x12345678:32,r3.w),@(3:2,er1)                 ;78366a2c123456783150
    xor.b @(0x12345678:32,r3.w),@-er1                      ;78366a2c12345678b150
    xor.b @(0x12345678:32,r3.w),@er1+                      ;78366a2c123456788150
    xor.b @(0x12345678:32,r3.w),@er1-                      ;78366a2c12345678a150
    xor.b @(0x12345678:32,r3.w),@+er1                      ;78366a2c123456789150
    xor.b @(0x12345678:32,r3.w),@(0xffff9abc:16,er1)       ;78366a2c12345678c1509abc
    xor.b @(0x12345678:32,r3.w),@(0x9abcdef0:32,er1)       ;78366a2c12345678c9509abcdef0
    xor.b @(0x12345678:32,r3.w),@(0xffff9abc:16,r2l.b)     ;78366a2c12345678d2509abc
    xor.b @(0x12345678:32,r3.w),@(0xffff9abc:16,r2.w)     ;78366a2c12345678e2509abc
    xor.b @(0x12345678:32,r3.w),@(0xffff9abc:16,er2.l)     ;78366a2c12345678f2509abc
    xor.b @(0x12345678:32,r3.w),@(0x9abcdef0:32,r2l.b)     ;78366a2c12345678da509abcdef0
    xor.b @(0x12345678:32,r3.w),@(0x9abcdef0:32,r2.w)     ;78366a2c12345678ea509abcdef0
    xor.b @(0x12345678:32,r3.w),@(0x9abcdef0:32,er2.l)     ;78366a2c12345678fa509abcdef0
    xor.b @(0x12345678:32,r3.w),@0xffff9abc:16             ;78366a2c1234567840509abc
    xor.b @(0x12345678:32,r3.w),@0x9abcdef0:32             ;78366a2c1234567848509abcdef0

    xor.b @(0x12345678:32,er3.l),@er1                       ;78376a2c123456780150
    xor.b @(0x12345678:32,er3.l),@(3:2,er1)                 ;78376a2c123456783150
    xor.b @(0x12345678:32,er3.l),@-er1                      ;78376a2c12345678b150
    xor.b @(0x12345678:32,er3.l),@er1+                      ;78376a2c123456788150
    xor.b @(0x12345678:32,er3.l),@er1-                      ;78376a2c12345678a150
    xor.b @(0x12345678:32,er3.l),@+er1                      ;78376a2c123456789150
    xor.b @(0x12345678:32,er3.l),@(0xffff9abc:16,er1)       ;78376a2c12345678c1509abc
    xor.b @(0x12345678:32,er3.l),@(0x9abcdef0:32,er1)       ;78376a2c12345678c9509abcdef0
    xor.b @(0x12345678:32,er3.l),@(0xffff9abc:16,r2l.b)     ;78376a2c12345678d2509abc
    xor.b @(0x12345678:32,er3.l),@(0xffff9abc:16,r2.w)     ;78376a2c12345678e2509abc
    xor.b @(0x12345678:32,er3.l),@(0xffff9abc:16,er2.l)     ;78376a2c12345678f2509abc
    xor.b @(0x12345678:32,er3.l),@(0x9abcdef0:32,r2l.b)     ;78376a2c12345678da509abcdef0
    xor.b @(0x12345678:32,er3.l),@(0x9abcdef0:32,r2.w)     ;78376a2c12345678ea509abcdef0
    xor.b @(0x12345678:32,er3.l),@(0x9abcdef0:32,er2.l)     ;78376a2c12345678fa509abcdef0
    xor.b @(0x12345678:32,er3.l),@0xffff9abc:16             ;78376a2c1234567840509abc
    xor.b @(0x12345678:32,er3.l),@0x9abcdef0:32             ;78376a2c1234567848509abcdef0

    xor.b @0x1234:16,@er1                              ;6a1512340150
    xor.b @0x1234:16,@(3:2,er1)                        ;6a1512343150
    xor.b @0x1234:16,@-er1                             ;6a151234b150
    xor.b @0x1234:16,@er1+                             ;6a1512348150
    xor.b @0x1234:16,@er1-                             ;6a151234a150
    xor.b @0x1234:16,@+er1                             ;6a1512349150
    xor.b @0x1234:16,@(0xffff9abc:16,er1)              ;6a151234c1509abc
    xor.b @0x1234:16,@(0x9abcdef0:32,er1)              ;6a151234c9509abcdef0
    xor.b @0x1234:16,@(0xffff9abc:16,r2l.b)            ;6a151234d2509abc
    xor.b @0x1234:16,@(0xffff9abc:16,r2.w)            ;6a151234e2509abc
    xor.b @0x1234:16,@(0xffff9abc:16,er2.l)            ;6a151234f2509abc
    xor.b @0x1234:16,@(0x9abcdef0:32,r2l.b)            ;6a151234da509abcdef0
    xor.b @0x1234:16,@(0x9abcdef0:32,r2.w)            ;6a151234ea509abcdef0
    xor.b @0x1234:16,@(0x9abcdef0:32,er2.l)            ;6a151234fa509abcdef0
    xor.b @0x1234:16,@0xffff9abc:16                    ;6a15123440509abc
    xor.b @0x1234:16,@0x9abcdef0:32                    ;6a15123448509abcdef0

    xor.b @0x12345678:32,@er1                              ;6a35123456780150
    xor.b @0x12345678:32,@(3:2,er1)                        ;6a35123456783150
    xor.b @0x12345678:32,@-er1                             ;6a3512345678b150
    xor.b @0x12345678:32,@er1+                             ;6a35123456788150
    xor.b @0x12345678:32,@er1-                             ;6a3512345678a150
    xor.b @0x12345678:32,@+er1                             ;6a35123456789150
    xor.b @0x12345678:32,@(0xffff9abc:16,er1)              ;6a3512345678c1509abc
    xor.b @0x12345678:32,@(0x9abcdef0:32,er1)              ;6a3512345678c9509abcdef0
    xor.b @0x12345678:32,@(0xffff9abc:16,r2l.b)            ;6a3512345678d2509abc
    xor.b @0x12345678:32,@(0xffff9abc:16,r2.w)            ;6a3512345678e2509abc
    xor.b @0x12345678:32,@(0xffff9abc:16,er2.l)            ;6a3512345678f2509abc
    xor.b @0x12345678:32,@(0x9abcdef0:32,r2l.b)            ;6a3512345678da509abcdef0
    xor.b @0x12345678:32,@(0x9abcdef0:32,r2.w)            ;6a3512345678ea509abcdef0
    xor.b @0x12345678:32,@(0x9abcdef0:32,er2.l)            ;6a3512345678fa509abcdef0
    xor.b @0x12345678:32,@0xffff9abc:16                    ;6a351234567840509abc
    xor.b @0x12345678:32,@0x9abcdef0:32                    ;6a351234567848509abcdef0

    xor.w #0x1234:16,r1           ;79511234
    xor.w #0x1234:16,@er1          ;015e01501234
    xor.w #0x1234:16,@(0x6:2,er1) ;015e31501234
    xor.w #0x1234:16,@er1+         ;015e81501234
    xor.w #0x1234:16,@-er1         ;015eb1501234
    xor.w #0x1234:16,@+er1         ;015e91501234
    xor.w #0x1234:16,@er1-         ;015ea1501234
    xor.w #0x1234:16,@(0xffff9abc:16,er1)   ;015ec1509abc1234
    xor.w #0x1234:16,@(0x9abcdef0:32,er1)   ;015ec9509abcdef01234
    xor.w #0x1234:16,@(0xffff9abc:16,r2l.b) ;015ed2509abc1234
    xor.w #0x1234:16,@(0xffff9abc:16,r2.w) ;015ee2509abc1234
    xor.w #0x1234:16,@(0xffff9abc:16,er2.l) ;015ef2509abc1234
    xor.w #0x1234:16,@(0x9abcdef0:32,r2l.b) ;015eda509abcdef01234
    xor.w #0x1234:16,@(0x9abcdef0:32,r2.w) ;015eea509abcdef01234
    xor.w #0x1234:16,@(0x9abcdef0:32,er2.l) ;015efa509abcdef01234
    xor.w #0x1234:16,@0xffff9abc:16         ;015e40509abc1234
    xor.w #0x1234:16,@0x9abcdef0:32         ;015e48509abcdef01234

    xor.w r3,r1              ;6531

    xor.w r3,@er1            ;7d906530
    xor.w r3,@(0x6:2,er1)   ;01593153
    xor.w r3,@-er1           ;0159b153
    xor.w r3,@er1+           ;01598153
    xor.w r3,@er1-           ;0159a153
    xor.w r3,@+er1           ;01599153
    xor.w r3,@(0x1234:16,er1)     ;0159c1531234
    xor.w r3,@(0x12345678:32,er1)     ;0159c95312345678
    xor.w r3,@(0x1234:16,r2l.b)   ;0159d2531234
    xor.w r3,@(0x1234:16,r2.w)   ;0159e2531234
    xor.w r3,@(0x1234:16,er2.l)   ;0159f2531234
    xor.w r3,@(0x12345678:32,r2l.b)   ;0159da5312345678
    xor.w r3,@(0x12345678:32,r2.w)   ;0159ea5312345678
    xor.w r3,@(0x12345678:32,er2.l)   ;0159fa5312345678
    xor.w r3,@0x1234:16          ;6b1812346530
    xor.w r3,@0x12345678:32          ;6b38123456786530

    xor.w @er3,r1            ;7cb06501
    xor.w @(0x6:2,er3),r1  ;015a3351
    xor.w @er3+,r1          ;015a8351
    xor.w @-er3,r1          ;015ab351
    xor.w @+er3,r1          ;015a9351
    xor.w @er3-,r1          ;015aa351
    xor.w @(0x1234:16,er1),r1     ;015ac1511234
    xor.w @(0x12345678:32,er1),r1     ;015ac95112345678
    xor.w @(0x1234:16,r2l.b),r1   ;015ad2511234
    xor.w @(0x1234:16,r2.w),r1   ;015ae2511234
    xor.w @(0x1234:16,er2.l),r1   ;015af2511234
    xor.w @(0x12345678:32,r2l.b),r1   ;015ada5112345678
    xor.w @(0x12345678:32,r2.w),r1   ;015aea5112345678
    xor.w @(0x12345678:32,er2.l),r1   ;015afa5112345678
    xor.w @0x1234:16,r1          ;6b1012346501
    xor.w @0x12345678:32,r1          ;6b30123456786501

    xor.w @er3,@er1                                ;7cb50150
    xor.w @er3,@(6:2,er1)                          ;7cb53150
    xor.w @er3,@-er1                               ;7cb5b150
    xor.w @er3,@er1+                               ;7cb58150
    xor.w @er3,@er1-                               ;7cb5a150
    xor.w @er3,@+er1                               ;7cb59150
    xor.w @er3,@(0xffff9abc:16,er1)                ;7cb5c1509abc
    xor.w @er3,@(0x9abcdef0:32,er1)                ;7cb5c9509abcdef0
    xor.w @er3,@(0xffff9abc:16,r2l.b)              ;7cb5d2509abc
    xor.w @er3,@(0xffff9abc:16,r2.w)              ;7cb5e2509abc
    xor.w @er3,@(0xffff9abc:16,er2.l)              ;7cb5f2509abc
    xor.w @er3,@(0x9abcdef0:32,r2l.b)              ;7cb5da509abcdef0
    xor.w @er3,@(0x9abcdef0:32,r2.w)              ;7cb5ea509abcdef0
    xor.w @er3,@(0x9abcdef0:32,er2.l)              ;7cb5fa509abcdef0
    xor.w @er3,@0xffff9abc:16                      ;7cb540509abc
    xor.w @er3,@0x9abcdef0:32                      ;7cb548509abcdef0

    xor.w @-er3,@er1                               ;01576d3c0150
    xor.w @-er3,@(6:2,er1)                         ;01576d3c3150
    xor.w @-er3,@-er1                              ;01576d3cb150
    xor.w @-er3,@er1+                              ;01576d3c8150
    xor.w @-er3,@er1-                              ;01576d3ca150
    xor.w @-er3,@+er1                              ;01576d3c9150
    xor.w @-er3,@(0xffff9abc:16,er1)               ;01576d3cc1509abc
    xor.w @-er3,@(0x9abcdef0:32,er1)               ;01576d3cc9509abcdef0
    xor.w @-er3,@(0xffff9abc:16,r2l.b)             ;01576d3cd2509abc
    xor.w @-er3,@(0xffff9abc:16,r2.w)             ;01576d3ce2509abc
    xor.w @-er3,@(0xffff9abc:16,er2.l)             ;01576d3cf2509abc
    xor.w @-er3,@(0x9abcdef0:32,r2l.b)             ;01576d3cda509abcdef0
    xor.w @-er3,@(0x9abcdef0:32,r2.w)             ;01576d3cea509abcdef0
    xor.w @-er3,@(0x9abcdef0:32,er2.l)             ;01576d3cfa509abcdef0
    xor.w @-er3,@0xffff9abc:16                     ;01576d3c40509abc
    xor.w @-er3,@0x9abcdef0:32                     ;01576d3c48509abcdef0

    xor.w @er3+,@er1                               ;01546d3c0150
    xor.w @er3+,@(6:2,er1)                         ;01546d3c3150
    xor.w @er3+,@-er1                              ;01546d3cb150
    xor.w @er3+,@er1+                              ;01546d3c8150
    xor.w @er3+,@er1-                              ;01546d3ca150
    xor.w @er3+,@+er1                              ;01546d3c9150
    xor.w @er3+,@(0xffff9abc:16,er1)               ;01546d3cc1509abc
    xor.w @er3+,@(0x9abcdef0:32,er1)               ;01546d3cc9509abcdef0
    xor.w @er3+,@(0xffff9abc:16,r2l.b)             ;01546d3cd2509abc
    xor.w @er3+,@(0xffff9abc:16,r2.w)             ;01546d3ce2509abc
    xor.w @er3+,@(0xffff9abc:16,er2.l)             ;01546d3cf2509abc
    xor.w @er3+,@(0x9abcdef0:32,r2l.b)             ;01546d3cda509abcdef0
    xor.w @er3+,@(0x9abcdef0:32,r2.w)             ;01546d3cea509abcdef0
    xor.w @er3+,@(0x9abcdef0:32,er2.l)             ;01546d3cfa509abcdef0
    xor.w @er3+,@0xffff9abc:16                     ;01546d3c40509abc
    xor.w @er3+,@0x9abcdef0:32                     ;01546d3c48509abcdef0

    xor.w @er3-,@er1                               ;01566d3c0150
    xor.w @er3-,@(6:2,er1)                         ;01566d3c3150
    xor.w @er3-,@-er1                              ;01566d3cb150
    xor.w @er3-,@er1+                              ;01566d3c8150
    xor.w @er3-,@er1-                              ;01566d3ca150
    xor.w @er3-,@+er1                              ;01566d3c9150
    xor.w @er3-,@(0xffff9abc:16,er1)               ;01566d3cc1509abc
    xor.w @er3-,@(0x9abcdef0:32,er1)               ;01566d3cc9509abcdef0
    xor.w @er3-,@(0xffff9abc:16,r2l.b)             ;01566d3cd2509abc
    xor.w @er3-,@(0xffff9abc:16,r2.w)             ;01566d3ce2509abc
    xor.w @er3-,@(0xffff9abc:16,er2.l)             ;01566d3cf2509abc
    xor.w @er3-,@(0x9abcdef0:32,r2l.b)             ;01566d3cda509abcdef0
    xor.w @er3-,@(0x9abcdef0:32,r2.w)             ;01566d3cea509abcdef0
    xor.w @er3-,@(0x9abcdef0:32,er2.l)             ;01566d3cfa509abcdef0
    xor.w @er3-,@0xffff9abc:16                     ;01566d3c40509abc
    xor.w @er3-,@0x9abcdef0:32                     ;01566d3c48509abcdef0

    xor.w @+er3,@er1                               ;01556d3c0150
    xor.w @+er3,@(6:2,er1)                         ;01556d3c3150
    xor.w @+er3,@-er1                              ;01556d3cb150
    xor.w @+er3,@er1+                              ;01556d3c8150
    xor.w @+er3,@er1-                              ;01556d3ca150
    xor.w @+er3,@+er1                              ;01556d3c9150
    xor.w @+er3,@(0xffff9abc:16,er1)               ;01556d3cc1509abc
    xor.w @+er3,@(0x9abcdef0:32,er1)               ;01556d3cc9509abcdef0
    xor.w @+er3,@(0xffff9abc:16,r2l.b)             ;01556d3cd2509abc
    xor.w @+er3,@(0xffff9abc:16,r2.w)             ;01556d3ce2509abc
    xor.w @+er3,@(0xffff9abc:16,er2.l)             ;01556d3cf2509abc
    xor.w @+er3,@(0x9abcdef0:32,r2l.b)             ;01556d3cda509abcdef0
    xor.w @+er3,@(0x9abcdef0:32,r2.w)             ;01556d3cea509abcdef0
    xor.w @+er3,@(0x9abcdef0:32,er2.l)             ;01556d3cfa509abcdef0
    xor.w @+er3,@0xffff9abc:16                     ;01556d3c40509abc
    xor.w @+er3,@0x9abcdef0:32                     ;01556d3c48509abcdef0

    xor.w @(0x1234:16,er3),@er1                         ;01546f3c12340150
    xor.w @(0x1234:16,er3),@(6:2,er1)                   ;01546f3c12343150
    xor.w @(0x1234:16,er3),@-er1                        ;01546f3c1234b150
    xor.w @(0x1234:16,er3),@er1+                        ;01546f3c12348150
    xor.w @(0x1234:16,er3),@er1-                        ;01546f3c1234a150
    xor.w @(0x1234:16,er3),@+er1                        ;01546f3c12349150
    xor.w @(0x1234:16,er3),@(0xffff9abc:16,er1)         ;01546f3c1234c1509abc
    xor.w @(0x1234:16,er3),@(0x9abcdef0:32,er1)         ;01546f3c1234c9509abcdef0
    xor.w @(0x1234:16,er3),@(0xffff9abc:16,r2l.b)       ;01546f3c1234d2509abc
    xor.w @(0x1234:16,er3),@(0xffff9abc:16,r2.w)       ;01546f3c1234e2509abc
    xor.w @(0x1234:16,er3),@(0xffff9abc:16,er2.l)       ;01546f3c1234f2509abc
    xor.w @(0x1234:16,er3),@(0x9abcdef0:32,r2l.b)       ;01546f3c1234da509abcdef0
    xor.w @(0x1234:16,er3),@(0x9abcdef0:32,r2.w)       ;01546f3c1234ea509abcdef0
    xor.w @(0x1234:16,er3),@(0x9abcdef0:32,er2.l)       ;01546f3c1234fa509abcdef0
    xor.w @(0x1234:16,er3),@0xffff9abc:16               ;01546f3c123440509abc
    xor.w @(0x1234:16,er3),@0x9abcdef0:32               ;01546f3c123448509abcdef0

    xor.w @(0x12345678:32,er3),@er1                         ;78346b2c123456780150
    xor.w @(0x12345678:32,er3),@(6:2,er1)                   ;78346b2c123456783150
    xor.w @(0x12345678:32,er3),@-er1                        ;78346b2c12345678b150
    xor.w @(0x12345678:32,er3),@er1+                        ;78346b2c123456788150
    xor.w @(0x12345678:32,er3),@er1-                        ;78346b2c12345678a150
    xor.w @(0x12345678:32,er3),@+er1                        ;78346b2c123456789150
    xor.w @(0x12345678:32,er3),@(0xffff9abc:16,er1)         ;78346b2c12345678c1509abc
    xor.w @(0x12345678:32,er3),@(0x9abcdef0:32,er1)         ;78346b2c12345678c9509abcdef0
    xor.w @(0x12345678:32,er3),@(0xffff9abc:16,r2l.b)       ;78346b2c12345678d2509abc
    xor.w @(0x12345678:32,er3),@(0xffff9abc:16,r2.w)       ;78346b2c12345678e2509abc
    xor.w @(0x12345678:32,er3),@(0xffff9abc:16,er2.l)       ;78346b2c12345678f2509abc
    xor.w @(0x12345678:32,er3),@(0x9abcdef0:32,r2l.b)       ;78346b2c12345678da509abcdef0
    xor.w @(0x12345678:32,er3),@(0x9abcdef0:32,r2.w)       ;78346b2c12345678ea509abcdef0
    xor.w @(0x12345678:32,er3),@(0x9abcdef0:32,er2.l)       ;78346b2c12345678fa509abcdef0
    xor.w @(0x12345678:32,er3),@0xffff9abc:16               ;78346b2c1234567840509abc
    xor.w @(0x12345678:32,er3),@0x9abcdef0:32               ;78346b2c1234567848509abcdef0

    xor.w @(0x1234:16,r3l.b),@er1                       ;01556f3c12340150
    xor.w @(0x1234:16,r3l.b),@(6:2,er1)                 ;01556f3c12343150
    xor.w @(0x1234:16,r3l.b),@-er1                      ;01556f3c1234b150
    xor.w @(0x1234:16,r3l.b),@er1+                      ;01556f3c12348150
    xor.w @(0x1234:16,r3l.b),@er1-                      ;01556f3c1234a150
    xor.w @(0x1234:16,r3l.b),@+er1                      ;01556f3c12349150
    xor.w @(0x1234:16,r3l.b),@(0xffff9abc:16,er1)       ;01556f3c1234c1509abc
    xor.w @(0x1234:16,r3l.b),@(0x9abcdef0:32,er1)       ;01556f3c1234c9509abcdef0
    xor.w @(0x1234:16,r3l.b),@(0xffff9abc:16,r2l.b)     ;01556f3c1234d2509abc
    xor.w @(0x1234:16,r3l.b),@(0xffff9abc:16,r2.w)     ;01556f3c1234e2509abc
    xor.w @(0x1234:16,r3l.b),@(0xffff9abc:16,er2.l)     ;01556f3c1234f2509abc
    xor.w @(0x1234:16,r3l.b),@(0x9abcdef0:32,r2l.b)     ;01556f3c1234da509abcdef0
    xor.w @(0x1234:16,r3l.b),@(0x9abcdef0:32,r2.w)     ;01556f3c1234ea509abcdef0
    xor.w @(0x1234:16,r3l.b),@(0x9abcdef0:32,er2.l)     ;01556f3c1234fa509abcdef0
    xor.w @(0x1234:16,r3l.b),@0xffff9abc:16             ;01556f3c123440509abc
    xor.w @(0x1234:16,r3l.b),@0x9abcdef0:32             ;01556f3c123448509abcdef0

    xor.w @(0x1234:16,r3.w),@er1                       ;01566f3c12340150
    xor.w @(0x1234:16,r3.w),@(6:2,er1)                 ;01566f3c12343150
    xor.w @(0x1234:16,r3.w),@-er1                      ;01566f3c1234b150
    xor.w @(0x1234:16,r3.w),@er1+                      ;01566f3c12348150
    xor.w @(0x1234:16,r3.w),@er1-                      ;01566f3c1234a150
    xor.w @(0x1234:16,r3.w),@+er1                      ;01566f3c12349150
    xor.w @(0x1234:16,r3.w),@(0xffff9abc:16,er1)       ;01566f3c1234c1509abc
    xor.w @(0x1234:16,r3.w),@(0x9abcdef0:32,er1)       ;01566f3c1234c9509abcdef0
    xor.w @(0x1234:16,r3.w),@(0xffff9abc:16,r2l.b)     ;01566f3c1234d2509abc
    xor.w @(0x1234:16,r3.w),@(0xffff9abc:16,r2.w)     ;01566f3c1234e2509abc
    xor.w @(0x1234:16,r3.w),@(0xffff9abc:16,er2.l)     ;01566f3c1234f2509abc
    xor.w @(0x1234:16,r3.w),@(0x9abcdef0:32,r2l.b)     ;01566f3c1234da509abcdef0
    xor.w @(0x1234:16,r3.w),@(0x9abcdef0:32,r2.w)     ;01566f3c1234ea509abcdef0
    xor.w @(0x1234:16,r3.w),@(0x9abcdef0:32,er2.l)     ;01566f3c1234fa509abcdef0
    xor.w @(0x1234:16,r3.w),@0xffff9abc:16             ;01566f3c123440509abc
    xor.w @(0x1234:16,r3.w),@0x9abcdef0:32             ;01566f3c123448509abcdef0

    xor.w @(0x1234:16,er3.l),@er1                       ;01576f3c12340150
    xor.w @(0x1234:16,er3.l),@(6:2,er1)                 ;01576f3c12343150
    xor.w @(0x1234:16,er3.l),@-er1                      ;01576f3c1234b150
    xor.w @(0x1234:16,er3.l),@er1+                      ;01576f3c12348150
    xor.w @(0x1234:16,er3.l),@er1-                      ;01576f3c1234a150
    xor.w @(0x1234:16,er3.l),@+er1                      ;01576f3c12349150
    xor.w @(0x1234:16,er3.l),@(0xffff9abc:16,er1)       ;01576f3c1234c1509abc
    xor.w @(0x1234:16,er3.l),@(0x9abcdef0:32,er1)       ;01576f3c1234c9509abcdef0
    xor.w @(0x1234:16,er3.l),@(0xffff9abc:16,r2l.b)     ;01576f3c1234d2509abc
    xor.w @(0x1234:16,er3.l),@(0xffff9abc:16,r2.w)     ;01576f3c1234e2509abc
    xor.w @(0x1234:16,er3.l),@(0xffff9abc:16,er2.l)     ;01576f3c1234f2509abc
    xor.w @(0x1234:16,er3.l),@(0x9abcdef0:32,r2l.b)     ;01576f3c1234da509abcdef0
    xor.w @(0x1234:16,er3.l),@(0x9abcdef0:32,r2.w)     ;01576f3c1234ea509abcdef0
    xor.w @(0x1234:16,er3.l),@(0x9abcdef0:32,er2.l)     ;01576f3c1234fa509abcdef0
    xor.w @(0x1234:16,er3.l),@0xffff9abc:16             ;01576f3c123440509abc
    xor.w @(0x1234:16,er3.l),@0x9abcdef0:32             ;01576f3c123448509abcdef0

    xor.w @(0x12345678:32,r3l.b),@er1                       ;78356b2c123456780150
    xor.w @(0x12345678:32,r3l.b),@(6:2,er1)                 ;78356b2c123456783150
    xor.w @(0x12345678:32,r3l.b),@-er1                      ;78356b2c12345678b150
    xor.w @(0x12345678:32,r3l.b),@er1+                      ;78356b2c123456788150
    xor.w @(0x12345678:32,r3l.b),@er1-                      ;78356b2c12345678a150
    xor.w @(0x12345678:32,r3l.b),@+er1                      ;78356b2c123456789150
    xor.w @(0x12345678:32,r3l.b),@(0xffff9abc:16,er1)       ;78356b2c12345678c1509abc
    xor.w @(0x12345678:32,r3l.b),@(0x9abcdef0:32,er1)       ;78356b2c12345678c9509abcdef0
    xor.w @(0x12345678:32,r3l.b),@(0xffff9abc:16,r2l.b)     ;78356b2c12345678d2509abc
    xor.w @(0x12345678:32,r3l.b),@(0xffff9abc:16,r2.w)     ;78356b2c12345678e2509abc
    xor.w @(0x12345678:32,r3l.b),@(0xffff9abc:16,er2.l)     ;78356b2c12345678f2509abc
    xor.w @(0x12345678:32,r3l.b),@(0x9abcdef0:32,r2l.b)     ;78356b2c12345678da509abcdef0
    xor.w @(0x12345678:32,r3l.b),@(0x9abcdef0:32,r2.w)     ;78356b2c12345678ea509abcdef0
    xor.w @(0x12345678:32,r3l.b),@(0x9abcdef0:32,er2.l)     ;78356b2c12345678fa509abcdef0
    xor.w @(0x12345678:32,r3l.b),@0xffff9abc:16             ;78356b2c1234567840509abc
    xor.w @(0x12345678:32,r3l.b),@0x9abcdef0:32             ;78356b2c1234567848509abcdef0

    xor.w @(0x12345678:32,r3.w),@er1                       ;78366b2c123456780150
    xor.w @(0x12345678:32,r3.w),@(6:2,er1)                 ;78366b2c123456783150
    xor.w @(0x12345678:32,r3.w),@-er1                      ;78366b2c12345678b150
    xor.w @(0x12345678:32,r3.w),@er1+                      ;78366b2c123456788150
    xor.w @(0x12345678:32,r3.w),@er1-                      ;78366b2c12345678a150
    xor.w @(0x12345678:32,r3.w),@+er1                      ;78366b2c123456789150
    xor.w @(0x12345678:32,r3.w),@(0xffff9abc:16,er1)       ;78366b2c12345678c1509abc
    xor.w @(0x12345678:32,r3.w),@(0x9abcdef0:32,er1)       ;78366b2c12345678c9509abcdef0
    xor.w @(0x12345678:32,r3.w),@(0xffff9abc:16,r2l.b)     ;78366b2c12345678d2509abc
    xor.w @(0x12345678:32,r3.w),@(0xffff9abc:16,r2.w)     ;78366b2c12345678e2509abc
    xor.w @(0x12345678:32,r3.w),@(0xffff9abc:16,er2.l)     ;78366b2c12345678f2509abc
    xor.w @(0x12345678:32,r3.w),@(0x9abcdef0:32,r2l.b)     ;78366b2c12345678da509abcdef0
    xor.w @(0x12345678:32,r3.w),@(0x9abcdef0:32,r2.w)     ;78366b2c12345678ea509abcdef0
    xor.w @(0x12345678:32,r3.w),@(0x9abcdef0:32,er2.l)     ;78366b2c12345678fa509abcdef0
    xor.w @(0x12345678:32,r3.w),@0xffff9abc:16             ;78366b2c1234567840509abc
    xor.w @(0x12345678:32,r3.w),@0x9abcdef0:32             ;78366b2c1234567848509abcdef0

    xor.w @(0x12345678:32,er3.l),@er1                       ;78376b2c123456780150
    xor.w @(0x12345678:32,er3.l),@(6:2,er1)                 ;78376b2c123456783150
    xor.w @(0x12345678:32,er3.l),@-er1                      ;78376b2c12345678b150
    xor.w @(0x12345678:32,er3.l),@er1+                      ;78376b2c123456788150
    xor.w @(0x12345678:32,er3.l),@er1-                      ;78376b2c12345678a150
    xor.w @(0x12345678:32,er3.l),@+er1                      ;78376b2c123456789150
    xor.w @(0x12345678:32,er3.l),@(0xffff9abc:16,er1)       ;78376b2c12345678c1509abc
    xor.w @(0x12345678:32,er3.l),@(0x9abcdef0:32,er1)       ;78376b2c12345678c9509abcdef0
    xor.w @(0x12345678:32,er3.l),@(0xffff9abc:16,r2l.b)     ;78376b2c12345678d2509abc
    xor.w @(0x12345678:32,er3.l),@(0xffff9abc:16,r2.w)     ;78376b2c12345678e2509abc
    xor.w @(0x12345678:32,er3.l),@(0xffff9abc:16,er2.l)     ;78376b2c12345678f2509abc
    xor.w @(0x12345678:32,er3.l),@(0x9abcdef0:32,r2l.b)     ;78376b2c12345678da509abcdef0
    xor.w @(0x12345678:32,er3.l),@(0x9abcdef0:32,r2.w)     ;78376b2c12345678ea509abcdef0
    xor.w @(0x12345678:32,er3.l),@(0x9abcdef0:32,er2.l)     ;78376b2c12345678fa509abcdef0
    xor.w @(0x12345678:32,er3.l),@0xffff9abc:16             ;78376b2c1234567840509abc
    xor.w @(0x12345678:32,er3.l),@0x9abcdef0:32             ;78376b2c1234567848509abcdef0

    xor.w @0x1234:16,@er1                              ;6b1512340150
    xor.w @0x1234:16,@(6:2,er1)                        ;6b1512343150
    xor.w @0x1234:16,@-er1                             ;6b151234b150
    xor.w @0x1234:16,@er1+                             ;6b1512348150
    xor.w @0x1234:16,@er1-                             ;6b151234a150
    xor.w @0x1234:16,@+er1                             ;6b1512349150
    xor.w @0x1234:16,@(0xffff9abc:16,er1)              ;6b151234c1509abc
    xor.w @0x1234:16,@(0x9abcdef0:32,er1)              ;6b151234c9509abcdef0
    xor.w @0x1234:16,@(0xffff9abc:16,r2l.b)            ;6b151234d2509abc
    xor.w @0x1234:16,@(0xffff9abc:16,r2.w)            ;6b151234e2509abc
    xor.w @0x1234:16,@(0xffff9abc:16,er2.l)            ;6b151234f2509abc
    xor.w @0x1234:16,@(0x9abcdef0:32,r2l.b)            ;6b151234da509abcdef0
    xor.w @0x1234:16,@(0x9abcdef0:32,r2.w)            ;6b151234ea509abcdef0
    xor.w @0x1234:16,@(0x9abcdef0:32,er2.l)            ;6b151234fa509abcdef0
    xor.w @0x1234:16,@0xffff9abc:16                    ;6b15123440509abc
    xor.w @0x1234:16,@0x9abcdef0:32                    ;6b15123448509abcdef0

    xor.w @0x12345678:32,@er1                              ;6b35123456780150
    xor.w @0x12345678:32,@(6:2,er1)                        ;6b35123456783150
    xor.w @0x12345678:32,@-er1                             ;6b3512345678b150
    xor.w @0x12345678:32,@er1+                             ;6b35123456788150
    xor.w @0x12345678:32,@er1-                             ;6b3512345678a150
    xor.w @0x12345678:32,@+er1                             ;6b35123456789150
    xor.w @0x12345678:32,@(0xffff9abc:16,er1)              ;6b3512345678c1509abc
    xor.w @0x12345678:32,@(0x9abcdef0:32,er1)              ;6b3512345678c9509abcdef0
    xor.w @0x12345678:32,@(0xffff9abc:16,r2l.b)            ;6b3512345678d2509abc
    xor.w @0x12345678:32,@(0xffff9abc:16,r2.w)            ;6b3512345678e2509abc
    xor.w @0x12345678:32,@(0xffff9abc:16,er2.l)            ;6b3512345678f2509abc
    xor.w @0x12345678:32,@(0x9abcdef0:32,r2l.b)            ;6b3512345678da509abcdef0
    xor.w @0x12345678:32,@(0x9abcdef0:32,r2.w)            ;6b3512345678ea509abcdef0
    xor.w @0x12345678:32,@(0x9abcdef0:32,er2.l)            ;6b3512345678fa509abcdef0
    xor.w @0x12345678:32,@0xffff9abc:16                    ;6b351234567840509abc
    xor.w @0x12345678:32,@0x9abcdef0:32                    ;6b351234567848509abcdef0

    xor.l #0x12345678:32,er1          ;7a5112345678
    xor.l #0x1234:16,er1           ;7a591234
    xor.l #0x12345678:32,@er1          ;010e015812345678
    xor.l #0x12345678:32,@(0xc:2,er1) ;010e315812345678
    xor.l #0x12345678:32,@er1+         ;010e815812345678
    xor.l #0x12345678:32,@-er1         ;010eb15812345678
    xor.l #0x12345678:32,@+er1         ;010e915812345678
    xor.l #0x12345678:32,@er1-         ;010ea15812345678
    xor.l #0x12345678:32,@(0xffff9abc:16,er1)   ;010ec1589abc12345678
    xor.l #0x12345678:32,@(0x9abcdef0:32,er1)   ;010ec9589abcdef012345678
    xor.l #0x12345678:32,@(0xffff9abc:16,r2l.b) ;010ed2589abc12345678
    xor.l #0x12345678:32,@(0xffff9abc:16,r2.w) ;010ee2589abc12345678
    xor.l #0x12345678:32,@(0xffff9abc:16,er2.l) ;010ef2589abc12345678
    xor.l #0x12345678:32,@(0x9abcdef0:32,r2l.b) ;010eda589abcdef012345678
    xor.l #0x12345678:32,@(0x9abcdef0:32,r2.w) ;010eea589abcdef012345678
    xor.l #0x12345678:32,@(0x9abcdef0:32,er2.l) ;010efa589abcdef012345678
    xor.l #0x12345678:32,@0xffff9abc:16        ;010e40589abc12345678
    xor.l #0x12345678:32,@0x9abcdef0:32        ;010e48589abcdef012345678
    xor.l #0x1234:16,@er1          ;010e01501234
    xor.l #0x1234:16,@(0xc:2,er1) ;010e31501234
    xor.l #0x1234:16,@er1+         ;010e81501234
    xor.l #0x1234:16,@-er1         ;010eb1501234
    xor.l #0x1234:16,@+er1         ;010e91501234
    xor.l #0x1234:16,@er1-         ;010ea1501234
    xor.l #0x1234:16,@(0xffff9abc:16,er1)   ;010ec1509abc1234
    xor.l #0x1234:16,@(0x9abcdef0:32,er1)   ;010ec9509abcdef01234
    xor.l #0x1234:16,@(0xffff9abc:16,r2l.b) ;010ed2509abc1234
    xor.l #0x1234:16,@(0xffff9abc:16,r2.w) ;010ee2509abc1234
    xor.l #0x1234:16,@(0xffff9abc:16,er2.l) ;010ef2509abc1234
    xor.l #0x1234:16,@(0x9abcdef0:32,r2l.b) ;010eda509abcdef01234
    xor.l #0x1234:16,@(0x9abcdef0:32,r2.w) ;010eea509abcdef01234
    xor.l #0x1234:16,@(0x9abcdef0:32,er2.l) ;010efa509abcdef01234
    xor.l #0x1234:16,@0xffff9abc:16        ;010e40509abc1234
    xor.l #0x1234:16,@0x9abcdef0:32        ;010e48509abcdef01234

    xor.l er3,er1            ;01f06531

    xor.l er3,@er1            ;01090153
    xor.l er3,@(0xc:2,er1)   ;01093153
    xor.l er3,@er1+           ;01098153
    xor.l er3,@-er1           ;0109b153
    xor.l er3,@+er1           ;01099153
    xor.l er3,@er1-           ;0109a153
    xor.l er3,@(0x1234:16,er1)     ;0109c1531234
    xor.l er3,@(0x12345678:32,er1)     ;0109c95312345678
    xor.l er3,@(0x1234:16,r2l.b)   ;0109d2531234
    xor.l er3,@(0x1234:16,r2.w)   ;0109e2531234
    xor.l er3,@(0x1234:16,er2.l)   ;0109f2531234
    xor.l er3,@(0x12345678:32,r2l.b)   ;0109da5312345678
    xor.l er3,@(0x12345678:32,r2.w)   ;0109ea5312345678
    xor.l er3,@(0x12345678:32,er2.l)   ;0109fa5312345678
    xor.l er3,@0x1234:16          ;010940531234
    xor.l er3,@0x12345678:32          ;0109485312345678

    xor.l @er3,er1            ;010a0351
    xor.l @(0xc:2,er3),er1  ;010a3351
    xor.l @er3+,er1          ;010a8351
    xor.l @-er3,er1          ;010ab351
    xor.l @+er3,er1          ;010a9351
    xor.l @er3-,er1          ;010aa351
    xor.l @(0x1234:16,er1),er1     ;010ac1511234
    xor.l @(0x12345678:32,er1),er1     ;010ac95112345678
    xor.l @(0x1234:16,r2l.b),er1   ;010ad2511234
    xor.l @(0x1234:16,r2.w),er1   ;010ae2511234
    xor.l @(0x1234:16,er2.l),er1   ;010af2511234
    xor.l @(0x12345678:32,r2l.b),er1   ;010ada5112345678
    xor.l @(0x12345678:32,r2.w),er1   ;010aea5112345678
    xor.l @(0x12345678:32,er2.l),er1   ;010afa5112345678
    xor.l @0x1234:16,er1          ;010a40511234
    xor.l @0x12345678:32,er1          ;010a485112345678

    xor.l @er3,@er1                                ;0104693c0150
    xor.l @er3,@(0xc:2,er1)                          ;0104693c3150
    xor.l @er3,@-er1                               ;0104693cb150
    xor.l @er3,@er1+                               ;0104693c8150
    xor.l @er3,@er1-                               ;0104693ca150
    xor.l @er3,@+er1                               ;0104693c9150
    xor.l @er3,@(0xffff9abc:16,er1)                ;0104693cc1509abc
    xor.l @er3,@(0x9abcdef0:32,er1)                ;0104693cc9509abcdef0
    xor.l @er3,@(0xffff9abc:16,r2l.b)              ;0104693cd2509abc
    xor.l @er3,@(0xffff9abc:16,r2.w)              ;0104693ce2509abc
    xor.l @er3,@(0xffff9abc:16,er2.l)              ;0104693cf2509abc
    xor.l @er3,@(0x9abcdef0:32,r2l.b)              ;0104693cda509abcdef0
    xor.l @er3,@(0x9abcdef0:32,r2.w)              ;0104693cea509abcdef0
    xor.l @er3,@(0x9abcdef0:32,er2.l)              ;0104693cfa509abcdef0
    xor.l @er3,@0xffff9abc:16                      ;0104693c40509abc
    xor.l @er3,@0x9abcdef0:32                      ;0104693c48509abcdef0

    xor.l @(0xc:2,er3),@er1                       ;0107693c0150
    xor.l @(0xc:2,er3),@(0xc:2,er1)                 ;0107693c3150
    xor.l @(0xc:2,er3),@-er1                      ;0107693cb150
    xor.l @(0xc:2,er3),@er1+                      ;0107693c8150
    xor.l @(0xc:2,er3),@er1-                      ;0107693ca150
    xor.l @(0xc:2,er3),@+er1                      ;0107693c9150
    xor.l @(0xc:2,er3),@(0xffff9abc:16,er1)       ;0107693cc1509abc
    xor.l @(0xc:2,er3),@(0x9abcdef0:32,er1)       ;0107693cc9509abcdef0
    xor.l @(0xc:2,er3),@(0xffff9abc:16,r2l.b)     ;0107693cd2509abc
    xor.l @(0xc:2,er3),@(0xffff9abc:16,r2.w)     ;0107693ce2509abc
    xor.l @(0xc:2,er3),@(0xffff9abc:16,er2.l)     ;0107693cf2509abc
    xor.l @(0xc:2,er3),@(0x9abcdef0:32,r2l.b)     ;0107693cda509abcdef0
    xor.l @(0xc:2,er3),@(0x9abcdef0:32,r2.w)     ;0107693cea509abcdef0
    xor.l @(0xc:2,er3),@(0x9abcdef0:32,er2.l)     ;0107693cfa509abcdef0
    xor.l @(0xc:2,er3),@0xffff9abc:16             ;0107693c40509abc
    xor.l @(0xc:2,er3),@0x9abcdef0:32             ;0107693c48509abcdef0

    xor.l @-er3,@er1                               ;01076d3c0150
    xor.l @-er3,@(0xc:2,er1)                         ;01076d3c3150
    xor.l @-er3,@-er1                              ;01076d3cb150
    xor.l @-er3,@er1+                              ;01076d3c8150
    xor.l @-er3,@er1-                              ;01076d3ca150
    xor.l @-er3,@+er1                              ;01076d3c9150
    xor.l @-er3,@(0xffff9abc:16,er1)               ;01076d3cc1509abc
    xor.l @-er3,@(0x9abcdef0:32,er1)               ;01076d3cc9509abcdef0
    xor.l @-er3,@(0xffff9abc:16,r2l.b)             ;01076d3cd2509abc
    xor.l @-er3,@(0xffff9abc:16,r2.w)             ;01076d3ce2509abc
    xor.l @-er3,@(0xffff9abc:16,er2.l)             ;01076d3cf2509abc
    xor.l @-er3,@(0x9abcdef0:32,r2l.b)             ;01076d3cda509abcdef0
    xor.l @-er3,@(0x9abcdef0:32,r2.w)             ;01076d3cea509abcdef0
    xor.l @-er3,@(0x9abcdef0:32,er2.l)             ;01076d3cfa509abcdef0
    xor.l @-er3,@0xffff9abc:16                     ;01076d3c40509abc
    xor.l @-er3,@0x9abcdef0:32                     ;01076d3c48509abcdef0

    xor.l @er3+,@er1                               ;01046d3c0150
    xor.l @er3+,@(0xc:2,er1)                         ;01046d3c3150
    xor.l @er3+,@-er1                              ;01046d3cb150
    xor.l @er3+,@er1+                              ;01046d3c8150
    xor.l @er3+,@er1-                              ;01046d3ca150
    xor.l @er3+,@+er1                              ;01046d3c9150
    xor.l @er3+,@(0xffff9abc:16,er1)               ;01046d3cc1509abc
    xor.l @er3+,@(0x9abcdef0:32,er1)               ;01046d3cc9509abcdef0
    xor.l @er3+,@(0xffff9abc:16,r2l.b)             ;01046d3cd2509abc
    xor.l @er3+,@(0xffff9abc:16,r2.w)             ;01046d3ce2509abc
    xor.l @er3+,@(0xffff9abc:16,er2.l)             ;01046d3cf2509abc
    xor.l @er3+,@(0x9abcdef0:32,r2l.b)             ;01046d3cda509abcdef0
    xor.l @er3+,@(0x9abcdef0:32,r2.w)             ;01046d3cea509abcdef0
    xor.l @er3+,@(0x9abcdef0:32,er2.l)             ;01046d3cfa509abcdef0
    xor.l @er3+,@0xffff9abc:16                     ;01046d3c40509abc
    xor.l @er3+,@0x9abcdef0:32                     ;01046d3c48509abcdef0

    xor.l @er3-,@er1                               ;01066d3c0150
    xor.l @er3-,@(0xc:2,er1)                         ;01066d3c3150
    xor.l @er3-,@-er1                              ;01066d3cb150
    xor.l @er3-,@er1+                              ;01066d3c8150
    xor.l @er3-,@er1-                              ;01066d3ca150
    xor.l @er3-,@+er1                              ;01066d3c9150
    xor.l @er3-,@(0xffff9abc:16,er1)               ;01066d3cc1509abc
    xor.l @er3-,@(0x9abcdef0:32,er1)               ;01066d3cc9509abcdef0
    xor.l @er3-,@(0xffff9abc:16,r2l.b)             ;01066d3cd2509abc
    xor.l @er3-,@(0xffff9abc:16,r2.w)             ;01066d3ce2509abc
    xor.l @er3-,@(0xffff9abc:16,er2.l)             ;01066d3cf2509abc
    xor.l @er3-,@(0x9abcdef0:32,r2l.b)             ;01066d3cda509abcdef0
    xor.l @er3-,@(0x9abcdef0:32,r2.w)             ;01066d3cea509abcdef0
    xor.l @er3-,@(0x9abcdef0:32,er2.l)             ;01066d3cfa509abcdef0
    xor.l @er3-,@0xffff9abc:16                     ;01066d3c40509abc
    xor.l @er3-,@0x9abcdef0:32                     ;01066d3c48509abcdef0

    xor.l @+er3,@er1                               ;01056d3c0150
    xor.l @+er3,@(0xc:2,er1)                         ;01056d3c3150
    xor.l @+er3,@-er1                              ;01056d3cb150
    xor.l @+er3,@er1+                              ;01056d3c8150
    xor.l @+er3,@er1-                              ;01056d3ca150
    xor.l @+er3,@+er1                              ;01056d3c9150
    xor.l @+er3,@(0xffff9abc:16,er1)               ;01056d3cc1509abc
    xor.l @+er3,@(0x9abcdef0:32,er1)               ;01056d3cc9509abcdef0
    xor.l @+er3,@(0xffff9abc:16,r2l.b)             ;01056d3cd2509abc
    xor.l @+er3,@(0xffff9abc:16,r2.w)             ;01056d3ce2509abc
    xor.l @+er3,@(0xffff9abc:16,er2.l)             ;01056d3cf2509abc
    xor.l @+er3,@(0x9abcdef0:32,r2l.b)             ;01056d3cda509abcdef0
    xor.l @+er3,@(0x9abcdef0:32,r2.w)             ;01056d3cea509abcdef0
    xor.l @+er3,@(0x9abcdef0:32,er2.l)             ;01056d3cfa509abcdef0
    xor.l @+er3,@0xffff9abc:16                     ;01056d3c40509abc
    xor.l @+er3,@0x9abcdef0:32                     ;01056d3c48509abcdef0

    xor.l @(0x1234:16,er3),@er1                         ;01046f3c12340150
    xor.l @(0x1234:16,er3),@(0xc:2,er1)                   ;01046f3c12343150
    xor.l @(0x1234:16,er3),@-er1                        ;01046f3c1234b150
    xor.l @(0x1234:16,er3),@er1+                        ;01046f3c12348150
    xor.l @(0x1234:16,er3),@er1-                        ;01046f3c1234a150
    xor.l @(0x1234:16,er3),@+er1                        ;01046f3c12349150
    xor.l @(0x1234:16,er3),@(0xffff9abc:16,er1)         ;01046f3c1234c1509abc
    xor.l @(0x1234:16,er3),@(0x9abcdef0:32,er1)         ;01046f3c1234c9509abcdef0
    xor.l @(0x1234:16,er3),@(0xffff9abc:16,r2l.b)       ;01046f3c1234d2509abc
    xor.l @(0x1234:16,er3),@(0xffff9abc:16,r2.w)       ;01046f3c1234e2509abc
    xor.l @(0x1234:16,er3),@(0xffff9abc:16,er2.l)       ;01046f3c1234f2509abc
    xor.l @(0x1234:16,er3),@(0x9abcdef0:32,r2l.b)       ;01046f3c1234da509abcdef0
    xor.l @(0x1234:16,er3),@(0x9abcdef0:32,r2.w)       ;01046f3c1234ea509abcdef0
    xor.l @(0x1234:16,er3),@(0x9abcdef0:32,er2.l)       ;01046f3c1234fa509abcdef0
    xor.l @(0x1234:16,er3),@0xffff9abc:16               ;01046f3c123440509abc
    xor.l @(0x1234:16,er3),@0x9abcdef0:32               ;01046f3c123448509abcdef0

    xor.l @(0x12345678:32,er3),@er1                         ;78b46b2c123456780150
    xor.l @(0x12345678:32,er3),@(0xc:2,er1)                   ;78b46b2c123456783150
    xor.l @(0x12345678:32,er3),@-er1                        ;78b46b2c12345678b150
    xor.l @(0x12345678:32,er3),@er1+                        ;78b46b2c123456788150
    xor.l @(0x12345678:32,er3),@er1-                        ;78b46b2c12345678a150
    xor.l @(0x12345678:32,er3),@+er1                        ;78b46b2c123456789150
    xor.l @(0x12345678:32,er3),@(0xffff9abc:16,er1)         ;78b46b2c12345678c1509abc
    xor.l @(0x12345678:32,er3),@(0x9abcdef0:32,er1)         ;78b46b2c12345678c9509abcdef0
    xor.l @(0x12345678:32,er3),@(0xffff9abc:16,r2l.b)       ;78b46b2c12345678d2509abc
    xor.l @(0x12345678:32,er3),@(0xffff9abc:16,r2.w)       ;78b46b2c12345678e2509abc
    xor.l @(0x12345678:32,er3),@(0xffff9abc:16,er2.l)       ;78b46b2c12345678f2509abc
    xor.l @(0x12345678:32,er3),@(0x9abcdef0:32,r2l.b)       ;78b46b2c12345678da509abcdef0
    xor.l @(0x12345678:32,er3),@(0x9abcdef0:32,r2.w)       ;78b46b2c12345678ea509abcdef0
    xor.l @(0x12345678:32,er3),@(0x9abcdef0:32,er2.l)       ;78b46b2c12345678fa509abcdef0
    xor.l @(0x12345678:32,er3),@0xffff9abc:16               ;78b46b2c1234567840509abc
    xor.l @(0x12345678:32,er3),@0x9abcdef0:32               ;78b46b2c1234567848509abcdef0

    xor.l @(0x1234:16,r3l.b),@er1                       ;01056f3c12340150
    xor.l @(0x1234:16,r3l.b),@(0xc:2,er1)                 ;01056f3c12343150
    xor.l @(0x1234:16,r3l.b),@-er1                      ;01056f3c1234b150
    xor.l @(0x1234:16,r3l.b),@er1+                      ;01056f3c12348150
    xor.l @(0x1234:16,r3l.b),@er1-                      ;01056f3c1234a150
    xor.l @(0x1234:16,r3l.b),@+er1                      ;01056f3c12349150
    xor.l @(0x1234:16,r3l.b),@(0xffff9abc:16,er1)       ;01056f3c1234c1509abc
    xor.l @(0x1234:16,r3l.b),@(0x9abcdef0:32,er1)       ;01056f3c1234c9509abcdef0
    xor.l @(0x1234:16,r3l.b),@(0xffff9abc:16,r2l.b)     ;01056f3c1234d2509abc
    xor.l @(0x1234:16,r3l.b),@(0xffff9abc:16,r2.w)     ;01056f3c1234e2509abc
    xor.l @(0x1234:16,r3l.b),@(0xffff9abc:16,er2.l)     ;01056f3c1234f2509abc
    xor.l @(0x1234:16,r3l.b),@(0x9abcdef0:32,r2l.b)     ;01056f3c1234da509abcdef0
    xor.l @(0x1234:16,r3l.b),@(0x9abcdef0:32,r2.w)     ;01056f3c1234ea509abcdef0
    xor.l @(0x1234:16,r3l.b),@(0x9abcdef0:32,er2.l)     ;01056f3c1234fa509abcdef0
    xor.l @(0x1234:16,r3l.b),@0xffff9abc:16             ;01056f3c123440509abc
    xor.l @(0x1234:16,r3l.b),@0x9abcdef0:32             ;01056f3c123448509abcdef0

    xor.l @(0x1234:16,r3.w),@er1                       ;01066f3c12340150
    xor.l @(0x1234:16,r3.w),@(0xc:2,er1)                 ;01066f3c12343150
    xor.l @(0x1234:16,r3.w),@-er1                      ;01066f3c1234b150
    xor.l @(0x1234:16,r3.w),@er1+                      ;01066f3c12348150
    xor.l @(0x1234:16,r3.w),@er1-                      ;01066f3c1234a150
    xor.l @(0x1234:16,r3.w),@+er1                      ;01066f3c12349150
    xor.l @(0x1234:16,r3.w),@(0xffff9abc:16,er1)       ;01066f3c1234c1509abc
    xor.l @(0x1234:16,r3.w),@(0x9abcdef0:32,er1)       ;01066f3c1234c9509abcdef0
    xor.l @(0x1234:16,r3.w),@(0xffff9abc:16,r2l.b)     ;01066f3c1234d2509abc
    xor.l @(0x1234:16,r3.w),@(0xffff9abc:16,r2.w)     ;01066f3c1234e2509abc
    xor.l @(0x1234:16,r3.w),@(0xffff9abc:16,er2.l)     ;01066f3c1234f2509abc
    xor.l @(0x1234:16,r3.w),@(0x9abcdef0:32,r2l.b)     ;01066f3c1234da509abcdef0
    xor.l @(0x1234:16,r3.w),@(0x9abcdef0:32,r2.w)     ;01066f3c1234ea509abcdef0
    xor.l @(0x1234:16,r3.w),@(0x9abcdef0:32,er2.l)     ;01066f3c1234fa509abcdef0
    xor.l @(0x1234:16,r3.w),@0xffff9abc:16             ;01066f3c123440509abc
    xor.l @(0x1234:16,r3.w),@0x9abcdef0:32             ;01066f3c123448509abcdef0

    xor.l @(0x1234:16,er3.l),@er1                       ;01076f3c12340150
    xor.l @(0x1234:16,er3.l),@(0xc:2,er1)                 ;01076f3c12343150
    xor.l @(0x1234:16,er3.l),@-er1                      ;01076f3c1234b150
    xor.l @(0x1234:16,er3.l),@er1+                      ;01076f3c12348150
    xor.l @(0x1234:16,er3.l),@er1-                      ;01076f3c1234a150
    xor.l @(0x1234:16,er3.l),@+er1                      ;01076f3c12349150
    xor.l @(0x1234:16,er3.l),@(0xffff9abc:16,er1)       ;01076f3c1234c1509abc
    xor.l @(0x1234:16,er3.l),@(0x9abcdef0:32,er1)       ;01076f3c1234c9509abcdef0
    xor.l @(0x1234:16,er3.l),@(0xffff9abc:16,r2l.b)     ;01076f3c1234d2509abc
    xor.l @(0x1234:16,er3.l),@(0xffff9abc:16,r2.w)     ;01076f3c1234e2509abc
    xor.l @(0x1234:16,er3.l),@(0xffff9abc:16,er2.l)     ;01076f3c1234f2509abc
    xor.l @(0x1234:16,er3.l),@(0x9abcdef0:32,r2l.b)     ;01076f3c1234da509abcdef0
    xor.l @(0x1234:16,er3.l),@(0x9abcdef0:32,r2.w)     ;01076f3c1234ea509abcdef0
    xor.l @(0x1234:16,er3.l),@(0x9abcdef0:32,er2.l)     ;01076f3c1234fa509abcdef0
    xor.l @(0x1234:16,er3.l),@0xffff9abc:16             ;01076f3c123440509abc
    xor.l @(0x1234:16,er3.l),@0x9abcdef0:32             ;01076f3c123448509abcdef0

    xor.l @(0x12345678:32,r3l.b),@er1                       ;78b56b2c123456780150
    xor.l @(0x12345678:32,r3l.b),@(0xc:2,er1)                 ;78b56b2c123456783150
    xor.l @(0x12345678:32,r3l.b),@-er1                      ;78b56b2c12345678b150
    xor.l @(0x12345678:32,r3l.b),@er1+                      ;78b56b2c123456788150
    xor.l @(0x12345678:32,r3l.b),@er1-                      ;78b56b2c12345678a150
    xor.l @(0x12345678:32,r3l.b),@+er1                      ;78b56b2c123456789150
    xor.l @(0x12345678:32,r3l.b),@(0xffff9abc:16,er1)       ;78b56b2c12345678c1509abc
    xor.l @(0x12345678:32,r3l.b),@(0x9abcdef0:32,er1)       ;78b56b2c12345678c9509abcdef0
    xor.l @(0x12345678:32,r3l.b),@(0xffff9abc:16,r2l.b)     ;78b56b2c12345678d2509abc
    xor.l @(0x12345678:32,r3l.b),@(0xffff9abc:16,r2.w)     ;78b56b2c12345678e2509abc
    xor.l @(0x12345678:32,r3l.b),@(0xffff9abc:16,er2.l)     ;78b56b2c12345678f2509abc
    xor.l @(0x12345678:32,r3l.b),@(0x9abcdef0:32,r2l.b)     ;78b56b2c12345678da509abcdef0
    xor.l @(0x12345678:32,r3l.b),@(0x9abcdef0:32,r2.w)     ;78b56b2c12345678ea509abcdef0
    xor.l @(0x12345678:32,r3l.b),@(0x9abcdef0:32,er2.l)     ;78b56b2c12345678fa509abcdef0
    xor.l @(0x12345678:32,r3l.b),@0xffff9abc:16             ;78b56b2c1234567840509abc
    xor.l @(0x12345678:32,r3l.b),@0x9abcdef0:32             ;78b56b2c1234567848509abcdef0

    xor.l @(0x12345678:32,r3.w),@er1                       ;78b66b2c123456780150
    xor.l @(0x12345678:32,r3.w),@(0xc:2,er1)                 ;78b66b2c123456783150
    xor.l @(0x12345678:32,r3.w),@-er1                      ;78b66b2c12345678b150
    xor.l @(0x12345678:32,r3.w),@er1+                      ;78b66b2c123456788150
    xor.l @(0x12345678:32,r3.w),@er1-                      ;78b66b2c12345678a150
    xor.l @(0x12345678:32,r3.w),@+er1                      ;78b66b2c123456789150
    xor.l @(0x12345678:32,r3.w),@(0xffff9abc:16,er1)       ;78b66b2c12345678c1509abc
    xor.l @(0x12345678:32,r3.w),@(0x9abcdef0:32,er1)       ;78b66b2c12345678c9509abcdef0
    xor.l @(0x12345678:32,r3.w),@(0xffff9abc:16,r2l.b)     ;78b66b2c12345678d2509abc
    xor.l @(0x12345678:32,r3.w),@(0xffff9abc:16,r2.w)     ;78b66b2c12345678e2509abc
    xor.l @(0x12345678:32,r3.w),@(0xffff9abc:16,er2.l)     ;78b66b2c12345678f2509abc
    xor.l @(0x12345678:32,r3.w),@(0x9abcdef0:32,r2l.b)     ;78b66b2c12345678da509abcdef0
    xor.l @(0x12345678:32,r3.w),@(0x9abcdef0:32,r2.w)     ;78b66b2c12345678ea509abcdef0
    xor.l @(0x12345678:32,r3.w),@(0x9abcdef0:32,er2.l)     ;78b66b2c12345678fa509abcdef0
    xor.l @(0x12345678:32,r3.w),@0xffff9abc:16             ;78b66b2c1234567840509abc
    xor.l @(0x12345678:32,r3.w),@0x9abcdef0:32             ;78b66b2c1234567848509abcdef0

    xor.l @(0x12345678:32,er3.l),@er1                       ;78b76b2c123456780150
    xor.l @(0x12345678:32,er3.l),@(0xc:2,er1)                 ;78b76b2c123456783150
    xor.l @(0x12345678:32,er3.l),@-er1                      ;78b76b2c12345678b150
    xor.l @(0x12345678:32,er3.l),@er1+                      ;78b76b2c123456788150
    xor.l @(0x12345678:32,er3.l),@er1-                      ;78b76b2c12345678a150
    xor.l @(0x12345678:32,er3.l),@+er1                      ;78b76b2c123456789150
    xor.l @(0x12345678:32,er3.l),@(0xffff9abc:16,er1)       ;78b76b2c12345678c1509abc
    xor.l @(0x12345678:32,er3.l),@(0x9abcdef0:32,er1)       ;78b76b2c12345678c9509abcdef0
    xor.l @(0x12345678:32,er3.l),@(0xffff9abc:16,r2l.b)     ;78b76b2c12345678d2509abc
    xor.l @(0x12345678:32,er3.l),@(0xffff9abc:16,r2.w)     ;78b76b2c12345678e2509abc
    xor.l @(0x12345678:32,er3.l),@(0xffff9abc:16,er2.l)     ;78b76b2c12345678f2509abc
    xor.l @(0x12345678:32,er3.l),@(0x9abcdef0:32,r2l.b)     ;78b76b2c12345678da509abcdef0
    xor.l @(0x12345678:32,er3.l),@(0x9abcdef0:32,r2.w)     ;78b76b2c12345678ea509abcdef0
    xor.l @(0x12345678:32,er3.l),@(0x9abcdef0:32,er2.l)     ;78b76b2c12345678fa509abcdef0
    xor.l @(0x12345678:32,er3.l),@0xffff9abc:16             ;78b76b2c1234567840509abc
    xor.l @(0x12345678:32,er3.l),@0x9abcdef0:32             ;78b76b2c1234567848509abcdef0

    xor.l @0x1234:16,@er1                              ;01046b0c12340150
    xor.l @0x1234:16,@(0xc:2,er1)                        ;01046b0c12343150
    xor.l @0x1234:16,@-er1                             ;01046b0c1234b150
    xor.l @0x1234:16,@er1+                             ;01046b0c12348150
    xor.l @0x1234:16,@er1-                             ;01046b0c1234a150
    xor.l @0x1234:16,@+er1                             ;01046b0c12349150
    xor.l @0x1234:16,@(0xffff9abc:16,er1)              ;01046b0c1234c1509abc
    xor.l @0x1234:16,@(0x9abcdef0:32,er1)              ;01046b0c1234c9509abcdef0
    xor.l @0x1234:16,@(0xffff9abc:16,r2l.b)            ;01046b0c1234d2509abc
    xor.l @0x1234:16,@(0xffff9abc:16,r2.w)            ;01046b0c1234e2509abc
    xor.l @0x1234:16,@(0xffff9abc:16,er2.l)            ;01046b0c1234f2509abc
    xor.l @0x1234:16,@(0x9abcdef0:32,r2l.b)            ;01046b0c1234da509abcdef0
    xor.l @0x1234:16,@(0x9abcdef0:32,r2.w)            ;01046b0c1234ea509abcdef0
    xor.l @0x1234:16,@(0x9abcdef0:32,er2.l)            ;01046b0c1234fa509abcdef0
    xor.l @0x1234:16,@0xffff9abc:16                    ;01046b0c123440509abc
    xor.l @0x1234:16,@0x9abcdef0:32                    ;01046b0c123448509abcdef0

    xor.l @0x12345678:32,@er1                              ;01046b2c123456780150
    xor.l @0x12345678:32,@(0xc:2,er1)                        ;01046b2c123456783150
    xor.l @0x12345678:32,@-er1                             ;01046b2c12345678b150
    xor.l @0x12345678:32,@er1+                             ;01046b2c123456788150
    xor.l @0x12345678:32,@er1-                             ;01046b2c12345678a150
    xor.l @0x12345678:32,@+er1                             ;01046b2c123456789150
    xor.l @0x12345678:32,@(0xffff9abc:16,er1)              ;01046b2c12345678c1509abc
    xor.l @0x12345678:32,@(0x9abcdef0:32,er1)              ;01046b2c12345678c9509abcdef0
    xor.l @0x12345678:32,@(0xffff9abc:16,r2l.b)            ;01046b2c12345678d2509abc
    xor.l @0x12345678:32,@(0xffff9abc:16,r2.w)            ;01046b2c12345678e2509abc
    xor.l @0x12345678:32,@(0xffff9abc:16,er2.l)            ;01046b2c12345678f2509abc
    xor.l @0x12345678:32,@(0x9abcdef0:32,r2l.b)            ;01046b2c12345678da509abcdef0
    xor.l @0x12345678:32,@(0x9abcdef0:32,r2.w)            ;01046b2c12345678ea509abcdef0
    xor.l @0x12345678:32,@(0x9abcdef0:32,er2.l)            ;01046b2c12345678fa509abcdef0
    xor.l @0x12345678:32,@0xffff9abc:16                    ;01046b2c1234567840509abc
    xor.l @0x12345678:32,@0x9abcdef0:32                    ;01046b2c1234567848509abcdef0

	.end