aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.disasm/t08_or.s
blob: da4e216c58b267d0af1898df411847091ff9aa6c (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:
    or.b #0x12:8,r1h            ;c112
    or.b #0x12:8,@er1           ;7d10c012
    or.b #0x12:8,@(0x3:2,er1)     ;01776818c012
    or.b #0x12:8,@er1+          ;01746c18c012
    or.b #0x12:8,@-er1          ;01776c18c012
    or.b #0x12:8,@+er1          ;01756c18c012
    or.b #0x12:8,@er1-          ;01766c18c012
    or.b #0x12:8,@(0x1234:16,er1)    ;01746e181234c012
    or.b #0x12:8,@(0x12345678:32,er1)    ;78146a2812345678c012
    or.b #0x12:8,@(0x1234:16,r2l.b)  ;01756e281234c012
    or.b #0x12:8,@(0x1234:16,r2.w)  ;01766e281234c012
    or.b #0x12:8,@(0x1234:16,er2.l)  ;01776e281234c012
    or.b #0x12:8,@(0x12345678:32,r2l.b)  ;78256a2812345678c012
    or.b #0x12:8,@(0x12345678:32,r2.w)  ;78266a2812345678c012
    or.b #0x12:8,@(0x12345678:32,er2.l)  ;78276a2812345678c012
    or.b #0x12:8,@0xffffff12:8          ;7f12c012
    or.b #0x12:8,@0x1234:16         ;6a181234c012
    or.b #0x12:8,@0x12345678:32         ;6a3812345678c012

    or.b r3h,r1h               ;1431

    or.b r3h,@er1             ;7d101430
    or.b r3h,@(0x3:2,er1)       ;01793143
    or.b r3h,@er1+            ;01798143
    or.b r3h,@-er1            ;0179b143
    or.b r3h,@+er1            ;01799143
    or.b r3h,@er1-            ;0179a143
    or.b r3h,@(0x1234:16,er1)      ;0179c1431234
    or.b r3h,@(0x12345678:32,er1)      ;0179c94312345678
    or.b r3h,@(0x1234:16,r2l.b)    ;0179d2431234
    or.b r3h,@(0x1234:16,r2.w)    ;0179e2431234
    or.b r3h,@(0x1234:16,er2.l)    ;0179f2431234
    or.b r3h,@(0x12345678:32,r2l.b)    ;0179da4312345678
    or.b r3h,@(0x12345678:32,r2.w)    ;0179ea4312345678
    or.b r3h,@(0x12345678:32,er2.l)    ;0179fa4312345678
    or.b r3h,@0xffffff12:8            ;7f121430
    or.b r3h,@0x1234:16           ;6a1812341430
    or.b r3h,@0x12345678:32            ;6a38123456781430

    or.b @er3,r1h             ;7c301401
    or.b @(0x3:2,er3),r1h      ;017a3341
    or.b @er3+,r1h           ;017a8341
    or.b @-er3,r1h           ;017ab341
    or.b @+er3,r1h           ;017a9341
    or.b @er3-,r1h           ;017aa341
    or.b @(0x1234:16,er1),r1h      ;017ac1411234
    or.b @(0x12345678:32,er1),r1h      ;017ac94112345678
    or.b @(0x1234:16,r2l.b),r1h    ;017ad2411234
    or.b @(0x1234:16,r2.w),r1h    ;017ae2411234
    or.b @(0x1234:16,er2.l),r1h    ;017af2411234
    or.b @(0x12345678:32,r2l.b),r1h    ;017ada4112345678
    or.b @(0x12345678:32,r2.w),r1h    ;017aea4112345678
    or.b @(0x12345678:32,er2.l),r1h    ;017afa4112345678
    or.b @0xffffff12:8,r1h            ;7e121401
    or.b @0x1234:16,r1h           ;6a1012341401
    or.b @0x12345678:32,r1h           ;6a30123456781401

    or.b @er3,@er1                                ;7c350140
    or.b @er3,@(3:2,er1)                          ;7c353140
    or.b @er3,@-er1                               ;7c35b140
    or.b @er3,@er1+                               ;7c358140
    or.b @er3,@er1-                               ;7c35a140
    or.b @er3,@+er1                               ;7c359140
    or.b @er3,@(0xffff9abc:16,er1)                ;7c35c1409abc
    or.b @er3,@(0x9abcdef0:32,er1)                ;7c35c9409abcdef0
    or.b @er3,@(0xffff9abc:16,r2l.b)              ;7c35d2409abc
    or.b @er3,@(0xffff9abc:16,r2.w)              ;7c35e2409abc
    or.b @er3,@(0xffff9abc:16,er2.l)              ;7c35f2409abc
    or.b @er3,@(0x9abcdef0:32,r2l.b)              ;7c35da409abcdef0
    or.b @er3,@(0x9abcdef0:32,r2.w)              ;7c35ea409abcdef0
    or.b @er3,@(0x9abcdef0:32,er2.l)              ;7c35fa409abcdef0
    or.b @er3,@0xffff9abc:16                      ;7c3540409abc
    or.b @er3,@0x9abcdef0:32                      ;7c3548409abcdef0

    or.b @-er3,@er1                               ;01776c3c0140
    or.b @-er3,@(3:2,er1)                         ;01776c3c3140
    or.b @-er3,@-er1                              ;01776c3cb140
    or.b @-er3,@er1+                              ;01776c3c8140
    or.b @-er3,@er1-                              ;01776c3ca140
    or.b @-er3,@+er1                              ;01776c3c9140
    or.b @-er3,@(0xffff9abc:16,er1)               ;01776c3cc1409abc
    or.b @-er3,@(0x9abcdef0:32,er1)               ;01776c3cc9409abcdef0
    or.b @-er3,@(0xffff9abc:16,r2l.b)             ;01776c3cd2409abc
    or.b @-er3,@(0xffff9abc:16,r2.w)             ;01776c3ce2409abc
    or.b @-er3,@(0xffff9abc:16,er2.l)             ;01776c3cf2409abc
    or.b @-er3,@(0x9abcdef0:32,r2l.b)             ;01776c3cda409abcdef0
    or.b @-er3,@(0x9abcdef0:32,r2.w)             ;01776c3cea409abcdef0
    or.b @-er3,@(0x9abcdef0:32,er2.l)             ;01776c3cfa409abcdef0
    or.b @-er3,@0xffff9abc:16                     ;01776c3c40409abc
    or.b @-er3,@0x9abcdef0:32                     ;01776c3c48409abcdef0

    or.b @er3+,@er1                               ;01746c3c0140
    or.b @er3+,@(3:2,er1)                         ;01746c3c3140
    or.b @er3+,@-er1                              ;01746c3cb140
    or.b @er3+,@er1+                              ;01746c3c8140
    or.b @er3+,@er1-                              ;01746c3ca140
    or.b @er3+,@+er1                              ;01746c3c9140
    or.b @er3+,@(0xffff9abc:16,er1)               ;01746c3cc1409abc
    or.b @er3+,@(0x9abcdef0:32,er1)               ;01746c3cc9409abcdef0
    or.b @er3+,@(0xffff9abc:16,r2l.b)             ;01746c3cd2409abc
    or.b @er3+,@(0xffff9abc:16,r2.w)             ;01746c3ce2409abc
    or.b @er3+,@(0xffff9abc:16,er2.l)             ;01746c3cf2409abc
    or.b @er3+,@(0x9abcdef0:32,r2l.b)             ;01746c3cda409abcdef0
    or.b @er3+,@(0x9abcdef0:32,r2.w)             ;01746c3cea409abcdef0
    or.b @er3+,@(0x9abcdef0:32,er2.l)             ;01746c3cfa409abcdef0
    or.b @er3+,@0xffff9abc:16                     ;01746c3c40409abc
    or.b @er3+,@0x9abcdef0:32                     ;01746c3c48409abcdef0

    or.b @er3-,@er1                               ;01766c3c0140
    or.b @er3-,@(3:2,er1)                         ;01766c3c3140
    or.b @er3-,@-er1                              ;01766c3cb140
    or.b @er3-,@er1+                              ;01766c3c8140
    or.b @er3-,@er1-                              ;01766c3ca140
    or.b @er3-,@+er1                              ;01766c3c9140
    or.b @er3-,@(0xffff9abc:16,er1)               ;01766c3cc1409abc
    or.b @er3-,@(0x9abcdef0:32,er1)               ;01766c3cc9409abcdef0
    or.b @er3-,@(0xffff9abc:16,r2l.b)             ;01766c3cd2409abc
    or.b @er3-,@(0xffff9abc:16,r2.w)             ;01766c3ce2409abc
    or.b @er3-,@(0xffff9abc:16,er2.l)             ;01766c3cf2409abc
    or.b @er3-,@(0x9abcdef0:32,r2l.b)             ;01766c3cda409abcdef0
    or.b @er3-,@(0x9abcdef0:32,r2.w)             ;01766c3cea409abcdef0
    or.b @er3-,@(0x9abcdef0:32,er2.l)             ;01766c3cfa409abcdef0
    or.b @er3-,@0xffff9abc:16                     ;01766c3c40409abc
    or.b @er3-,@0x9abcdef0:32                     ;01766c3c48409abcdef0

    or.b @+er3,@er1                               ;01756c3c0140
    or.b @+er3,@(3:2,er1)                         ;01756c3c3140
    or.b @+er3,@-er1                              ;01756c3cb140
    or.b @+er3,@er1+                              ;01756c3c8140
    or.b @+er3,@er1-                              ;01756c3ca140
    or.b @+er3,@+er1                              ;01756c3c9140
    or.b @+er3,@(0xffff9abc:16,er1)               ;01756c3cc1409abc
    or.b @+er3,@(0x9abcdef0:32,er1)               ;01756c3cc9409abcdef0
    or.b @+er3,@(0xffff9abc:16,r2l.b)             ;01756c3cd2409abc
    or.b @+er3,@(0xffff9abc:16,r2.w)             ;01756c3ce2409abc
    or.b @+er3,@(0xffff9abc:16,er2.l)             ;01756c3cf2409abc
    or.b @+er3,@(0x9abcdef0:32,r2l.b)             ;01756c3cda409abcdef0
    or.b @+er3,@(0x9abcdef0:32,r2.w)             ;01756c3cea409abcdef0
    or.b @+er3,@(0x9abcdef0:32,er2.l)             ;01756c3cfa409abcdef0
    or.b @+er3,@0xffff9abc:16                     ;01756c3c40409abc
    or.b @+er3,@0x9abcdef0:32                     ;01756c3c48409abcdef0

    or.b @(0x1234:16,er3),@er1                         ;01746e3c12340140
    or.b @(0x1234:16,er3),@(3:2,er1)                   ;01746e3c12343140
    or.b @(0x1234:16,er3),@-er1                        ;01746e3c1234b140
    or.b @(0x1234:16,er3),@er1+                        ;01746e3c12348140
    or.b @(0x1234:16,er3),@er1-                        ;01746e3c1234a140
    or.b @(0x1234:16,er3),@+er1                        ;01746e3c12349140
    or.b @(0x1234:16,er3),@(0xffff9abc:16,er1)         ;01746e3c1234c1409abc
    or.b @(0x1234:16,er3),@(0x9abcdef0:32,er1)         ;01746e3c1234c9409abcdef0
    or.b @(0x1234:16,er3),@(0xffff9abc:16,r2l.b)       ;01746e3c1234d2409abc
    or.b @(0x1234:16,er3),@(0xffff9abc:16,r2.w)       ;01746e3c1234e2409abc
    or.b @(0x1234:16,er3),@(0xffff9abc:16,er2.l)       ;01746e3c1234f2409abc
    or.b @(0x1234:16,er3),@(0x9abcdef0:32,r2l.b)       ;01746e3c1234da409abcdef0
    or.b @(0x1234:16,er3),@(0x9abcdef0:32,r2.w)       ;01746e3c1234ea409abcdef0
    or.b @(0x1234:16,er3),@(0x9abcdef0:32,er2.l)       ;01746e3c1234fa409abcdef0
    or.b @(0x1234:16,er3),@0xffff9abc:16               ;01746e3c123440409abc
    or.b @(0x1234:16,er3),@0x9abcdef0:32               ;01746e3c123448409abcdef0

    or.b @(0x12345678:32,er3),@er1                         ;78346a2c123456780140
    or.b @(0x12345678:32,er3),@(3:2,er1)                   ;78346a2c123456783140
    or.b @(0x12345678:32,er3),@-er1                        ;78346a2c12345678b140
    or.b @(0x12345678:32,er3),@er1+                        ;78346a2c123456788140
    or.b @(0x12345678:32,er3),@er1-                        ;78346a2c12345678a140
    or.b @(0x12345678:32,er3),@+er1                        ;78346a2c123456789140
    or.b @(0x12345678:32,er3),@(0xffff9abc:16,er1)         ;78346a2c12345678c1409abc
    or.b @(0x12345678:32,er3),@(0x9abcdef0:32,er1)         ;78346a2c12345678c9409abcdef0
    or.b @(0x12345678:32,er3),@(0xffff9abc:16,r2l.b)       ;78346a2c12345678d2409abc
    or.b @(0x12345678:32,er3),@(0xffff9abc:16,r2.w)       ;78346a2c12345678e2409abc
    or.b @(0x12345678:32,er3),@(0xffff9abc:16,er2.l)       ;78346a2c12345678f2409abc
    or.b @(0x12345678:32,er3),@(0x9abcdef0:32,r2l.b)       ;78346a2c12345678da409abcdef0
    or.b @(0x12345678:32,er3),@(0x9abcdef0:32,r2.w)       ;78346a2c12345678ea409abcdef0
    or.b @(0x12345678:32,er3),@(0x9abcdef0:32,er2.l)       ;78346a2c12345678fa409abcdef0
    or.b @(0x12345678:32,er3),@0xffff9abc:16               ;78346a2c1234567840409abc
    or.b @(0x12345678:32,er3),@0x9abcdef0:32               ;78346a2c1234567848409abcdef0

    or.b @(0x1234:16,r3l.b),@er1                       ;01756e3c12340140
    or.b @(0x1234:16,r3l.b),@(3:2,er1)                 ;01756e3c12343140
    or.b @(0x1234:16,r3l.b),@-er1                      ;01756e3c1234b140
    or.b @(0x1234:16,r3l.b),@er1+                      ;01756e3c12348140
    or.b @(0x1234:16,r3l.b),@er1-                      ;01756e3c1234a140
    or.b @(0x1234:16,r3l.b),@+er1                      ;01756e3c12349140
    or.b @(0x1234:16,r3l.b),@(0xffff9abc:16,er1)       ;01756e3c1234c1409abc
    or.b @(0x1234:16,r3l.b),@(0x9abcdef0:32,er1)       ;01756e3c1234c9409abcdef0
    or.b @(0x1234:16,r3l.b),@(0xffff9abc:16,r2l.b)     ;01756e3c1234d2409abc
    or.b @(0x1234:16,r3l.b),@(0xffff9abc:16,r2.w)     ;01756e3c1234e2409abc
    or.b @(0x1234:16,r3l.b),@(0xffff9abc:16,er2.l)     ;01756e3c1234f2409abc
    or.b @(0x1234:16,r3l.b),@(0x9abcdef0:32,r2l.b)     ;01756e3c1234da409abcdef0
    or.b @(0x1234:16,r3l.b),@(0x9abcdef0:32,r2.w)     ;01756e3c1234ea409abcdef0
    or.b @(0x1234:16,r3l.b),@(0x9abcdef0:32,er2.l)     ;01756e3c1234fa409abcdef0
    or.b @(0x1234:16,r3l.b),@0xffff9abc:16             ;01756e3c123440409abc
    or.b @(0x1234:16,r3l.b),@0x9abcdef0:32             ;01756e3c123448409abcdef0

    or.b @(0x1234:16,r3.w),@er1                       ;01766e3c12340140
    or.b @(0x1234:16,r3.w),@(3:2,er1)                 ;01766e3c12343140
    or.b @(0x1234:16,r3.w),@-er1                      ;01766e3c1234b140
    or.b @(0x1234:16,r3.w),@er1+                      ;01766e3c12348140
    or.b @(0x1234:16,r3.w),@er1-                      ;01766e3c1234a140
    or.b @(0x1234:16,r3.w),@+er1                      ;01766e3c12349140
    or.b @(0x1234:16,r3.w),@(0xffff9abc:16,er1)       ;01766e3c1234c1409abc
    or.b @(0x1234:16,r3.w),@(0x9abcdef0:32,er1)       ;01766e3c1234c9409abcdef0
    or.b @(0x1234:16,r3.w),@(0xffff9abc:16,r2l.b)     ;01766e3c1234d2409abc
    or.b @(0x1234:16,r3.w),@(0xffff9abc:16,r2.w)     ;01766e3c1234e2409abc
    or.b @(0x1234:16,r3.w),@(0xffff9abc:16,er2.l)     ;01766e3c1234f2409abc
    or.b @(0x1234:16,r3.w),@(0x9abcdef0:32,r2l.b)     ;01766e3c1234da409abcdef0
    or.b @(0x1234:16,r3.w),@(0x9abcdef0:32,r2.w)     ;01766e3c1234ea409abcdef0
    or.b @(0x1234:16,r3.w),@(0x9abcdef0:32,er2.l)     ;01766e3c1234fa409abcdef0
    or.b @(0x1234:16,r3.w),@0xffff9abc:16             ;01766e3c123440409abc
    or.b @(0x1234:16,r3.w),@0x9abcdef0:32             ;01766e3c123448409abcdef0

    or.b @(0x1234:16,er3.l),@er1                       ;01776e3c12340140
    or.b @(0x1234:16,er3.l),@(3:2,er1)                 ;01776e3c12343140
    or.b @(0x1234:16,er3.l),@-er1                      ;01776e3c1234b140
    or.b @(0x1234:16,er3.l),@er1+                      ;01776e3c12348140
    or.b @(0x1234:16,er3.l),@er1-                      ;01776e3c1234a140
    or.b @(0x1234:16,er3.l),@+er1                      ;01776e3c12349140
    or.b @(0x1234:16,er3.l),@(0xffff9abc:16,er1)       ;01776e3c1234c1409abc
    or.b @(0x1234:16,er3.l),@(0x9abcdef0:32,er1)       ;01776e3c1234c9409abcdef0
    or.b @(0x1234:16,er3.l),@(0xffff9abc:16,r2l.b)     ;01776e3c1234d2409abc
    or.b @(0x1234:16,er3.l),@(0xffff9abc:16,r2.w)     ;01776e3c1234e2409abc
    or.b @(0x1234:16,er3.l),@(0xffff9abc:16,er2.l)     ;01776e3c1234f2409abc
    or.b @(0x1234:16,er3.l),@(0x9abcdef0:32,r2l.b)     ;01776e3c1234da409abcdef0
    or.b @(0x1234:16,er3.l),@(0x9abcdef0:32,r2.w)     ;01776e3c1234ea409abcdef0
    or.b @(0x1234:16,er3.l),@(0x9abcdef0:32,er2.l)     ;01776e3c1234fa409abcdef0
    or.b @(0x1234:16,er3.l),@0xffff9abc:16             ;01776e3c123440409abc
    or.b @(0x1234:16,er3.l),@0x9abcdef0:32             ;01776e3c123448409abcdef0

    or.b @(0x12345678:32,r3l.b),@er1                       ;78356a2c123456780140
    or.b @(0x12345678:32,r3l.b),@(3:2,er1)                 ;78356a2c123456783140
    or.b @(0x12345678:32,r3l.b),@-er1                      ;78356a2c12345678b140
    or.b @(0x12345678:32,r3l.b),@er1+                      ;78356a2c123456788140
    or.b @(0x12345678:32,r3l.b),@er1-                      ;78356a2c12345678a140
    or.b @(0x12345678:32,r3l.b),@+er1                      ;78356a2c123456789140
    or.b @(0x12345678:32,r3l.b),@(0xffff9abc:16,er1)       ;78356a2c12345678c1409abc
    or.b @(0x12345678:32,r3l.b),@(0x9abcdef0:32,er1)       ;78356a2c12345678c9409abcdef0
    or.b @(0x12345678:32,r3l.b),@(0xffff9abc:16,r2l.b)     ;78356a2c12345678d2409abc
    or.b @(0x12345678:32,r3l.b),@(0xffff9abc:16,r2.w)     ;78356a2c12345678e2409abc
    or.b @(0x12345678:32,r3l.b),@(0xffff9abc:16,er2.l)     ;78356a2c12345678f2409abc
    or.b @(0x12345678:32,r3l.b),@(0x9abcdef0:32,r2l.b)     ;78356a2c12345678da409abcdef0
    or.b @(0x12345678:32,r3l.b),@(0x9abcdef0:32,r2.w)     ;78356a2c12345678ea409abcdef0
    or.b @(0x12345678:32,r3l.b),@(0x9abcdef0:32,er2.l)     ;78356a2c12345678fa409abcdef0
    or.b @(0x12345678:32,r3l.b),@0xffff9abc:16             ;78356a2c1234567840409abc
    or.b @(0x12345678:32,r3l.b),@0x9abcdef0:32             ;78356a2c1234567848409abcdef0

    or.b @(0x12345678:32,r3.w),@er1                       ;78366a2c123456780140
    or.b @(0x12345678:32,r3.w),@(3:2,er1)                 ;78366a2c123456783140
    or.b @(0x12345678:32,r3.w),@-er1                      ;78366a2c12345678b140
    or.b @(0x12345678:32,r3.w),@er1+                      ;78366a2c123456788140
    or.b @(0x12345678:32,r3.w),@er1-                      ;78366a2c12345678a140
    or.b @(0x12345678:32,r3.w),@+er1                      ;78366a2c123456789140
    or.b @(0x12345678:32,r3.w),@(0xffff9abc:16,er1)       ;78366a2c12345678c1409abc
    or.b @(0x12345678:32,r3.w),@(0x9abcdef0:32,er1)       ;78366a2c12345678c9409abcdef0
    or.b @(0x12345678:32,r3.w),@(0xffff9abc:16,r2l.b)     ;78366a2c12345678d2409abc
    or.b @(0x12345678:32,r3.w),@(0xffff9abc:16,r2.w)     ;78366a2c12345678e2409abc
    or.b @(0x12345678:32,r3.w),@(0xffff9abc:16,er2.l)     ;78366a2c12345678f2409abc
    or.b @(0x12345678:32,r3.w),@(0x9abcdef0:32,r2l.b)     ;78366a2c12345678da409abcdef0
    or.b @(0x12345678:32,r3.w),@(0x9abcdef0:32,r2.w)     ;78366a2c12345678ea409abcdef0
    or.b @(0x12345678:32,r3.w),@(0x9abcdef0:32,er2.l)     ;78366a2c12345678fa409abcdef0
    or.b @(0x12345678:32,r3.w),@0xffff9abc:16             ;78366a2c1234567840409abc
    or.b @(0x12345678:32,r3.w),@0x9abcdef0:32             ;78366a2c1234567848409abcdef0

    or.b @(0x12345678:32,er3.l),@er1                       ;78376a2c123456780140
    or.b @(0x12345678:32,er3.l),@(3:2,er1)                 ;78376a2c123456783140
    or.b @(0x12345678:32,er3.l),@-er1                      ;78376a2c12345678b140
    or.b @(0x12345678:32,er3.l),@er1+                      ;78376a2c123456788140
    or.b @(0x12345678:32,er3.l),@er1-                      ;78376a2c12345678a140
    or.b @(0x12345678:32,er3.l),@+er1                      ;78376a2c123456789140
    or.b @(0x12345678:32,er3.l),@(0xffff9abc:16,er1)       ;78376a2c12345678c1409abc
    or.b @(0x12345678:32,er3.l),@(0x9abcdef0:32,er1)       ;78376a2c12345678c9409abcdef0
    or.b @(0x12345678:32,er3.l),@(0xffff9abc:16,r2l.b)     ;78376a2c12345678d2409abc
    or.b @(0x12345678:32,er3.l),@(0xffff9abc:16,r2.w)     ;78376a2c12345678e2409abc
    or.b @(0x12345678:32,er3.l),@(0xffff9abc:16,er2.l)     ;78376a2c12345678f2409abc
    or.b @(0x12345678:32,er3.l),@(0x9abcdef0:32,r2l.b)     ;78376a2c12345678da409abcdef0
    or.b @(0x12345678:32,er3.l),@(0x9abcdef0:32,r2.w)     ;78376a2c12345678ea409abcdef0
    or.b @(0x12345678:32,er3.l),@(0x9abcdef0:32,er2.l)     ;78376a2c12345678fa409abcdef0
    or.b @(0x12345678:32,er3.l),@0xffff9abc:16             ;78376a2c1234567840409abc
    or.b @(0x12345678:32,er3.l),@0x9abcdef0:32             ;78376a2c1234567848409abcdef0

    or.b @0x1234:16,@er1                              ;6a1512340140
    or.b @0x1234:16,@(3:2,er1)                        ;6a1512343140
    or.b @0x1234:16,@-er1                             ;6a151234b140
    or.b @0x1234:16,@er1+                             ;6a1512348140
    or.b @0x1234:16,@er1-                             ;6a151234a140
    or.b @0x1234:16,@+er1                             ;6a1512349140
    or.b @0x1234:16,@(0xffff9abc:16,er1)              ;6a151234c1409abc
    or.b @0x1234:16,@(0x9abcdef0:32,er1)              ;6a151234c9409abcdef0
    or.b @0x1234:16,@(0xffff9abc:16,r2l.b)            ;6a151234d2409abc
    or.b @0x1234:16,@(0xffff9abc:16,r2.w)            ;6a151234e2409abc
    or.b @0x1234:16,@(0xffff9abc:16,er2.l)            ;6a151234f2409abc
    or.b @0x1234:16,@(0x9abcdef0:32,r2l.b)            ;6a151234da409abcdef0
    or.b @0x1234:16,@(0x9abcdef0:32,r2.w)            ;6a151234ea409abcdef0
    or.b @0x1234:16,@(0x9abcdef0:32,er2.l)            ;6a151234fa409abcdef0
    or.b @0x1234:16,@0xffff9abc:16                    ;6a15123440409abc
    or.b @0x1234:16,@0x9abcdef0:32                    ;6a15123448409abcdef0

    or.b @0x12345678:32,@er1                              ;6a35123456780140
    or.b @0x12345678:32,@(3:2,er1)                        ;6a35123456783140
    or.b @0x12345678:32,@-er1                             ;6a3512345678b140
    or.b @0x12345678:32,@er1+                             ;6a35123456788140
    or.b @0x12345678:32,@er1-                             ;6a3512345678a140
    or.b @0x12345678:32,@+er1                             ;6a35123456789140
    or.b @0x12345678:32,@(0xffff9abc:16,er1)              ;6a3512345678c1409abc
    or.b @0x12345678:32,@(0x9abcdef0:32,er1)              ;6a3512345678c9409abcdef0
    or.b @0x12345678:32,@(0xffff9abc:16,r2l.b)            ;6a3512345678d2409abc
    or.b @0x12345678:32,@(0xffff9abc:16,r2.w)            ;6a3512345678e2409abc
    or.b @0x12345678:32,@(0xffff9abc:16,er2.l)            ;6a3512345678f2409abc
    or.b @0x12345678:32,@(0x9abcdef0:32,r2l.b)            ;6a3512345678da409abcdef0
    or.b @0x12345678:32,@(0x9abcdef0:32,r2.w)            ;6a3512345678ea409abcdef0
    or.b @0x12345678:32,@(0x9abcdef0:32,er2.l)            ;6a3512345678fa409abcdef0
    or.b @0x12345678:32,@0xffff9abc:16                    ;6a351234567840409abc
    or.b @0x12345678:32,@0x9abcdef0:32                    ;6a351234567848409abcdef0

    or.w #0x1234:16,r1            ;79411234
    or.w #0x1234:16,@er1           ;015e01401234
    or.w #0x1234:16,@(0x6:2,er1) ;015e31401234
    or.w #0x1234:16,@er1+          ;015e81401234
    or.w #0x1234:16,@-er1          ;015eb1401234
    or.w #0x1234:16,@+er1          ;015e91401234
    or.w #0x1234:16,@er1-          ;015ea1401234
    or.w #0x1234:16,@(0xffff9abc:16,er1)    ;015ec1409abc1234
    or.w #0x1234:16,@(0x9abcdef0:32,er1)    ;015ec9409abcdef01234
    or.w #0x1234:16,@(0xffff9abc:16,r2l.b)  ;015ed2409abc1234
    or.w #0x1234:16,@(0xffff9abc:16,r2.w)  ;015ee2409abc1234
    or.w #0x1234:16,@(0xffff9abc:16,er2.l)  ;015ef2409abc1234
    or.w #0x1234:16,@(0x9abcdef0:32,r2l.b)  ;015eda409abcdef01234
    or.w #0x1234:16,@(0x9abcdef0:32,r2.w)  ;015eea409abcdef01234
    or.w #0x1234:16,@(0x9abcdef0:32,er2.l)  ;015efa409abcdef01234
    or.w #0x1234:16,@0xffff9abc:16          ;015e40409abc1234
    or.w #0x1234:16,@0x9abcdef0:32          ;015e48409abcdef01234

    or.w r3,r1               ;6431

    or.w r3,@er1             ;7d906430
    or.w r3,@(0x6:2,er1)    ;01593143
    or.w r3,@er1+            ;01598143
    or.w r3,@-er1            ;0159b143
    or.w r3,@+er1            ;01599143
    or.w r3,@er1-            ;0159a143
    or.w r3,@(0x1234:16,er1)      ;0159c1431234
    or.w r3,@(0x12345678:32,er1)      ;0159c94312345678
    or.w r3,@(0x1234:16,r2l.b)    ;0159d2431234
    or.w r3,@(0x1234:16,r2.w)    ;0159e2431234
    or.w r3,@(0x1234:16,er2.l)    ;0159f2431234
    or.w r3,@(0x12345678:32,r2l.b)    ;0159da4312345678
    or.w r3,@(0x12345678:32,r2.w)    ;0159ea4312345678
    or.w r3,@(0x12345678:32,er2.l)    ;0159fa4312345678
    or.w r3,@0x1234:16           ;6b1812346430
    or.w r3,@0x12345678:32           ;6b38123456786430

    or.w @er3,r1             ;7cb06401
    or.w @(0x6:2,er3),r1   ;015a3341
    or.w @er3+,r1           ;015a8341
    or.w @-er3,r1           ;015ab341
    or.w @+er3,r1           ;015a9341
    or.w @er3-,r1           ;015aa341
    or.w @(0x1234:16,er1),r1      ;015ac1411234
    or.w @(0x12345678:32,er1),r1      ;015ac94112345678
    or.w @(0x1234:16,r2l.b),r1    ;015ad2411234
    or.w @(0x1234:16,r2.w),r1    ;015ae2411234
    or.w @(0x1234:16,er2.l),r1    ;015af2411234
    or.w @(0x12345678:32,r2l.b),r1    ;015ada4112345678
    or.w @(0x12345678:32,r2.w),r1    ;015aea4112345678
    or.w @(0x12345678:32,er2.l),r1    ;015afa4112345678
    or.w @0x1234:16,r1           ;6b1012346401
    or.w @0x12345678:32,r1           ;6b30123456786401

    or.w @er3,@er1                                ;7cb50140
    or.w @er3,@(6:2,er1)                          ;7cb53140
    or.w @er3,@-er1                               ;7cb5b140
    or.w @er3,@er1+                               ;7cb58140
    or.w @er3,@er1-                               ;7cb5a140
    or.w @er3,@+er1                               ;7cb59140
    or.w @er3,@(0xffff9abc:16,er1)                ;7cb5c1409abc
    or.w @er3,@(0x9abcdef0:32,er1)                ;7cb5c9409abcdef0
    or.w @er3,@(0xffff9abc:16,r2l.b)              ;7cb5d2409abc
    or.w @er3,@(0xffff9abc:16,r2.w)              ;7cb5e2409abc
    or.w @er3,@(0xffff9abc:16,er2.l)              ;7cb5f2409abc
    or.w @er3,@(0x9abcdef0:32,r2l.b)              ;7cb5da409abcdef0
    or.w @er3,@(0x9abcdef0:32,r2.w)              ;7cb5ea409abcdef0
    or.w @er3,@(0x9abcdef0:32,er2.l)              ;7cb5fa409abcdef0
    or.w @er3,@0xffff9abc:16                      ;7cb540409abc
    or.w @er3,@0x9abcdef0:32                      ;7cb548409abcdef0

    or.w @-er3,@er1                               ;01576d3c0140
    or.w @-er3,@(6:2,er1)                         ;01576d3c3140
    or.w @-er3,@-er1                              ;01576d3cb140
    or.w @-er3,@er1+                              ;01576d3c8140
    or.w @-er3,@er1-                              ;01576d3ca140
    or.w @-er3,@+er1                              ;01576d3c9140
    or.w @-er3,@(0xffff9abc:16,er1)               ;01576d3cc1409abc
    or.w @-er3,@(0x9abcdef0:32,er1)               ;01576d3cc9409abcdef0
    or.w @-er3,@(0xffff9abc:16,r2l.b)             ;01576d3cd2409abc
    or.w @-er3,@(0xffff9abc:16,r2.w)             ;01576d3ce2409abc
    or.w @-er3,@(0xffff9abc:16,er2.l)             ;01576d3cf2409abc
    or.w @-er3,@(0x9abcdef0:32,r2l.b)             ;01576d3cda409abcdef0
    or.w @-er3,@(0x9abcdef0:32,r2.w)             ;01576d3cea409abcdef0
    or.w @-er3,@(0x9abcdef0:32,er2.l)             ;01576d3cfa409abcdef0
    or.w @-er3,@0xffff9abc:16                     ;01576d3c40409abc
    or.w @-er3,@0x9abcdef0:32                     ;01576d3c48409abcdef0

    or.w @er3+,@er1                               ;01546d3c0140
    or.w @er3+,@(6:2,er1)                         ;01546d3c3140
    or.w @er3+,@-er1                              ;01546d3cb140
    or.w @er3+,@er1+                              ;01546d3c8140
    or.w @er3+,@er1-                              ;01546d3ca140
    or.w @er3+,@+er1                              ;01546d3c9140
    or.w @er3+,@(0xffff9abc:16,er1)               ;01546d3cc1409abc
    or.w @er3+,@(0x9abcdef0:32,er1)               ;01546d3cc9409abcdef0
    or.w @er3+,@(0xffff9abc:16,r2l.b)             ;01546d3cd2409abc
    or.w @er3+,@(0xffff9abc:16,r2.w)             ;01546d3ce2409abc
    or.w @er3+,@(0xffff9abc:16,er2.l)             ;01546d3cf2409abc
    or.w @er3+,@(0x9abcdef0:32,r2l.b)             ;01546d3cda409abcdef0
    or.w @er3+,@(0x9abcdef0:32,r2.w)             ;01546d3cea409abcdef0
    or.w @er3+,@(0x9abcdef0:32,er2.l)             ;01546d3cfa409abcdef0
    or.w @er3+,@0xffff9abc:16                     ;01546d3c40409abc
    or.w @er3+,@0x9abcdef0:32                     ;01546d3c48409abcdef0

    or.w @er3-,@er1                               ;01566d3c0140
    or.w @er3-,@(6:2,er1)                         ;01566d3c3140
    or.w @er3-,@-er1                              ;01566d3cb140
    or.w @er3-,@er1+                              ;01566d3c8140
    or.w @er3-,@er1-                              ;01566d3ca140
    or.w @er3-,@+er1                              ;01566d3c9140
    or.w @er3-,@(0xffff9abc:16,er1)               ;01566d3cc1409abc
    or.w @er3-,@(0x9abcdef0:32,er1)               ;01566d3cc9409abcdef0
    or.w @er3-,@(0xffff9abc:16,r2l.b)             ;01566d3cd2409abc
    or.w @er3-,@(0xffff9abc:16,r2.w)             ;01566d3ce2409abc
    or.w @er3-,@(0xffff9abc:16,er2.l)             ;01566d3cf2409abc
    or.w @er3-,@(0x9abcdef0:32,r2l.b)             ;01566d3cda409abcdef0
    or.w @er3-,@(0x9abcdef0:32,r2.w)             ;01566d3cea409abcdef0
    or.w @er3-,@(0x9abcdef0:32,er2.l)             ;01566d3cfa409abcdef0
    or.w @er3-,@0xffff9abc:16                     ;01566d3c40409abc
    or.w @er3-,@0x9abcdef0:32                     ;01566d3c48409abcdef0

    or.w @+er3,@er1                               ;01556d3c0140
    or.w @+er3,@(6:2,er1)                         ;01556d3c3140
    or.w @+er3,@-er1                              ;01556d3cb140
    or.w @+er3,@er1+                              ;01556d3c8140
    or.w @+er3,@er1-                              ;01556d3ca140
    or.w @+er3,@+er1                              ;01556d3c9140
    or.w @+er3,@(0xffff9abc:16,er1)               ;01556d3cc1409abc
    or.w @+er3,@(0x9abcdef0:32,er1)               ;01556d3cc9409abcdef0
    or.w @+er3,@(0xffff9abc:16,r2l.b)             ;01556d3cd2409abc
    or.w @+er3,@(0xffff9abc:16,r2.w)             ;01556d3ce2409abc
    or.w @+er3,@(0xffff9abc:16,er2.l)             ;01556d3cf2409abc
    or.w @+er3,@(0x9abcdef0:32,r2l.b)             ;01556d3cda409abcdef0
    or.w @+er3,@(0x9abcdef0:32,r2.w)             ;01556d3cea409abcdef0
    or.w @+er3,@(0x9abcdef0:32,er2.l)             ;01556d3cfa409abcdef0
    or.w @+er3,@0xffff9abc:16                     ;01556d3c40409abc
    or.w @+er3,@0x9abcdef0:32                     ;01556d3c48409abcdef0

    or.w @(0x1234:16,er3),@er1                         ;01546f3c12340140
    or.w @(0x1234:16,er3),@(6:2,er1)                   ;01546f3c12343140
    or.w @(0x1234:16,er3),@-er1                        ;01546f3c1234b140
    or.w @(0x1234:16,er3),@er1+                        ;01546f3c12348140
    or.w @(0x1234:16,er3),@er1-                        ;01546f3c1234a140
    or.w @(0x1234:16,er3),@+er1                        ;01546f3c12349140
    or.w @(0x1234:16,er3),@(0xffff9abc:16,er1)         ;01546f3c1234c1409abc
    or.w @(0x1234:16,er3),@(0x9abcdef0:32,er1)         ;01546f3c1234c9409abcdef0
    or.w @(0x1234:16,er3),@(0xffff9abc:16,r2l.b)       ;01546f3c1234d2409abc
    or.w @(0x1234:16,er3),@(0xffff9abc:16,r2.w)       ;01546f3c1234e2409abc
    or.w @(0x1234:16,er3),@(0xffff9abc:16,er2.l)       ;01546f3c1234f2409abc
    or.w @(0x1234:16,er3),@(0x9abcdef0:32,r2l.b)       ;01546f3c1234da409abcdef0
    or.w @(0x1234:16,er3),@(0x9abcdef0:32,r2.w)       ;01546f3c1234ea409abcdef0
    or.w @(0x1234:16,er3),@(0x9abcdef0:32,er2.l)       ;01546f3c1234fa409abcdef0
    or.w @(0x1234:16,er3),@0xffff9abc:16               ;01546f3c123440409abc
    or.w @(0x1234:16,er3),@0x9abcdef0:32               ;01546f3c123448409abcdef0

    or.w @(0x12345678:32,er3),@er1                         ;78346b2c123456780140
    or.w @(0x12345678:32,er3),@(6:2,er1)                   ;78346b2c123456783140
    or.w @(0x12345678:32,er3),@-er1                        ;78346b2c12345678b140
    or.w @(0x12345678:32,er3),@er1+                        ;78346b2c123456788140
    or.w @(0x12345678:32,er3),@er1-                        ;78346b2c12345678a140
    or.w @(0x12345678:32,er3),@+er1                        ;78346b2c123456789140
    or.w @(0x12345678:32,er3),@(0xffff9abc:16,er1)         ;78346b2c12345678c1409abc
    or.w @(0x12345678:32,er3),@(0x9abcdef0:32,er1)         ;78346b2c12345678c9409abcdef0
    or.w @(0x12345678:32,er3),@(0xffff9abc:16,r2l.b)       ;78346b2c12345678d2409abc
    or.w @(0x12345678:32,er3),@(0xffff9abc:16,r2.w)       ;78346b2c12345678e2409abc
    or.w @(0x12345678:32,er3),@(0xffff9abc:16,er2.l)       ;78346b2c12345678f2409abc
    or.w @(0x12345678:32,er3),@(0x9abcdef0:32,r2l.b)       ;78346b2c12345678da409abcdef0
    or.w @(0x12345678:32,er3),@(0x9abcdef0:32,r2.w)       ;78346b2c12345678ea409abcdef0
    or.w @(0x12345678:32,er3),@(0x9abcdef0:32,er2.l)       ;78346b2c12345678fa409abcdef0
    or.w @(0x12345678:32,er3),@0xffff9abc:16               ;78346b2c1234567840409abc
    or.w @(0x12345678:32,er3),@0x9abcdef0:32               ;78346b2c1234567848409abcdef0

    or.w @(0x1234:16,r3l.b),@er1                       ;01556f3c12340140
    or.w @(0x1234:16,r3l.b),@(6:2,er1)                 ;01556f3c12343140
    or.w @(0x1234:16,r3l.b),@-er1                      ;01556f3c1234b140
    or.w @(0x1234:16,r3l.b),@er1+                      ;01556f3c12348140
    or.w @(0x1234:16,r3l.b),@er1-                      ;01556f3c1234a140
    or.w @(0x1234:16,r3l.b),@+er1                      ;01556f3c12349140
    or.w @(0x1234:16,r3l.b),@(0xffff9abc:16,er1)       ;01556f3c1234c1409abc
    or.w @(0x1234:16,r3l.b),@(0x9abcdef0:32,er1)       ;01556f3c1234c9409abcdef0
    or.w @(0x1234:16,r3l.b),@(0xffff9abc:16,r2l.b)     ;01556f3c1234d2409abc
    or.w @(0x1234:16,r3l.b),@(0xffff9abc:16,r2.w)     ;01556f3c1234e2409abc
    or.w @(0x1234:16,r3l.b),@(0xffff9abc:16,er2.l)     ;01556f3c1234f2409abc
    or.w @(0x1234:16,r3l.b),@(0x9abcdef0:32,r2l.b)     ;01556f3c1234da409abcdef0
    or.w @(0x1234:16,r3l.b),@(0x9abcdef0:32,r2.w)     ;01556f3c1234ea409abcdef0
    or.w @(0x1234:16,r3l.b),@(0x9abcdef0:32,er2.l)     ;01556f3c1234fa409abcdef0
    or.w @(0x1234:16,r3l.b),@0xffff9abc:16             ;01556f3c123440409abc
    or.w @(0x1234:16,r3l.b),@0x9abcdef0:32             ;01556f3c123448409abcdef0

    or.w @(0x1234:16,r3.w),@er1                       ;01566f3c12340140
    or.w @(0x1234:16,r3.w),@(6:2,er1)                 ;01566f3c12343140
    or.w @(0x1234:16,r3.w),@-er1                      ;01566f3c1234b140
    or.w @(0x1234:16,r3.w),@er1+                      ;01566f3c12348140
    or.w @(0x1234:16,r3.w),@er1-                      ;01566f3c1234a140
    or.w @(0x1234:16,r3.w),@+er1                      ;01566f3c12349140
    or.w @(0x1234:16,r3.w),@(0xffff9abc:16,er1)       ;01566f3c1234c1409abc
    or.w @(0x1234:16,r3.w),@(0x9abcdef0:32,er1)       ;01566f3c1234c9409abcdef0
    or.w @(0x1234:16,r3.w),@(0xffff9abc:16,r2l.b)     ;01566f3c1234d2409abc
    or.w @(0x1234:16,r3.w),@(0xffff9abc:16,r2.w)     ;01566f3c1234e2409abc
    or.w @(0x1234:16,r3.w),@(0xffff9abc:16,er2.l)     ;01566f3c1234f2409abc
    or.w @(0x1234:16,r3.w),@(0x9abcdef0:32,r2l.b)     ;01566f3c1234da409abcdef0
    or.w @(0x1234:16,r3.w),@(0x9abcdef0:32,r2.w)     ;01566f3c1234ea409abcdef0
    or.w @(0x1234:16,r3.w),@(0x9abcdef0:32,er2.l)     ;01566f3c1234fa409abcdef0
    or.w @(0x1234:16,r3.w),@0xffff9abc:16             ;01566f3c123440409abc
    or.w @(0x1234:16,r3.w),@0x9abcdef0:32             ;01566f3c123448409abcdef0

    or.w @(0x1234:16,er3.l),@er1                       ;01576f3c12340140
    or.w @(0x1234:16,er3.l),@(6:2,er1)                 ;01576f3c12343140
    or.w @(0x1234:16,er3.l),@-er1                      ;01576f3c1234b140
    or.w @(0x1234:16,er3.l),@er1+                      ;01576f3c12348140
    or.w @(0x1234:16,er3.l),@er1-                      ;01576f3c1234a140
    or.w @(0x1234:16,er3.l),@+er1                      ;01576f3c12349140
    or.w @(0x1234:16,er3.l),@(0xffff9abc:16,er1)       ;01576f3c1234c1409abc
    or.w @(0x1234:16,er3.l),@(0x9abcdef0:32,er1)       ;01576f3c1234c9409abcdef0
    or.w @(0x1234:16,er3.l),@(0xffff9abc:16,r2l.b)     ;01576f3c1234d2409abc
    or.w @(0x1234:16,er3.l),@(0xffff9abc:16,r2.w)     ;01576f3c1234e2409abc
    or.w @(0x1234:16,er3.l),@(0xffff9abc:16,er2.l)     ;01576f3c1234f2409abc
    or.w @(0x1234:16,er3.l),@(0x9abcdef0:32,r2l.b)     ;01576f3c1234da409abcdef0
    or.w @(0x1234:16,er3.l),@(0x9abcdef0:32,r2.w)     ;01576f3c1234ea409abcdef0
    or.w @(0x1234:16,er3.l),@(0x9abcdef0:32,er2.l)     ;01576f3c1234fa409abcdef0
    or.w @(0x1234:16,er3.l),@0xffff9abc:16             ;01576f3c123440409abc
    or.w @(0x1234:16,er3.l),@0x9abcdef0:32             ;01576f3c123448409abcdef0

    or.w @(0x12345678:32,r3l.b),@er1                       ;78356b2c123456780140
    or.w @(0x12345678:32,r3l.b),@(6:2,er1)                 ;78356b2c123456783140
    or.w @(0x12345678:32,r3l.b),@-er1                      ;78356b2c12345678b140
    or.w @(0x12345678:32,r3l.b),@er1+                      ;78356b2c123456788140
    or.w @(0x12345678:32,r3l.b),@er1-                      ;78356b2c12345678a140
    or.w @(0x12345678:32,r3l.b),@+er1                      ;78356b2c123456789140
    or.w @(0x12345678:32,r3l.b),@(0xffff9abc:16,er1)       ;78356b2c12345678c1409abc
    or.w @(0x12345678:32,r3l.b),@(0x9abcdef0:32,er1)       ;78356b2c12345678c9409abcdef0
    or.w @(0x12345678:32,r3l.b),@(0xffff9abc:16,r2l.b)     ;78356b2c12345678d2409abc
    or.w @(0x12345678:32,r3l.b),@(0xffff9abc:16,r2.w)     ;78356b2c12345678e2409abc
    or.w @(0x12345678:32,r3l.b),@(0xffff9abc:16,er2.l)     ;78356b2c12345678f2409abc
    or.w @(0x12345678:32,r3l.b),@(0x9abcdef0:32,r2l.b)     ;78356b2c12345678da409abcdef0
    or.w @(0x12345678:32,r3l.b),@(0x9abcdef0:32,r2.w)     ;78356b2c12345678ea409abcdef0
    or.w @(0x12345678:32,r3l.b),@(0x9abcdef0:32,er2.l)     ;78356b2c12345678fa409abcdef0
    or.w @(0x12345678:32,r3l.b),@0xffff9abc:16             ;78356b2c1234567840409abc
    or.w @(0x12345678:32,r3l.b),@0x9abcdef0:32             ;78356b2c1234567848409abcdef0

    or.w @(0x12345678:32,r3.w),@er1                       ;78366b2c123456780140
    or.w @(0x12345678:32,r3.w),@(6:2,er1)                 ;78366b2c123456783140
    or.w @(0x12345678:32,r3.w),@-er1                      ;78366b2c12345678b140
    or.w @(0x12345678:32,r3.w),@er1+                      ;78366b2c123456788140
    or.w @(0x12345678:32,r3.w),@er1-                      ;78366b2c12345678a140
    or.w @(0x12345678:32,r3.w),@+er1                      ;78366b2c123456789140
    or.w @(0x12345678:32,r3.w),@(0xffff9abc:16,er1)       ;78366b2c12345678c1409abc
    or.w @(0x12345678:32,r3.w),@(0x9abcdef0:32,er1)       ;78366b2c12345678c9409abcdef0
    or.w @(0x12345678:32,r3.w),@(0xffff9abc:16,r2l.b)     ;78366b2c12345678d2409abc
    or.w @(0x12345678:32,r3.w),@(0xffff9abc:16,r2.w)     ;78366b2c12345678e2409abc
    or.w @(0x12345678:32,r3.w),@(0xffff9abc:16,er2.l)     ;78366b2c12345678f2409abc
    or.w @(0x12345678:32,r3.w),@(0x9abcdef0:32,r2l.b)     ;78366b2c12345678da409abcdef0
    or.w @(0x12345678:32,r3.w),@(0x9abcdef0:32,r2.w)     ;78366b2c12345678ea409abcdef0
    or.w @(0x12345678:32,r3.w),@(0x9abcdef0:32,er2.l)     ;78366b2c12345678fa409abcdef0
    or.w @(0x12345678:32,r3.w),@0xffff9abc:16             ;78366b2c1234567840409abc
    or.w @(0x12345678:32,r3.w),@0x9abcdef0:32             ;78366b2c1234567848409abcdef0

    or.w @(0x12345678:32,er3.l),@er1                       ;78376b2c123456780140
    or.w @(0x12345678:32,er3.l),@(6:2,er1)                 ;78376b2c123456783140
    or.w @(0x12345678:32,er3.l),@-er1                      ;78376b2c12345678b140
    or.w @(0x12345678:32,er3.l),@er1+                      ;78376b2c123456788140
    or.w @(0x12345678:32,er3.l),@er1-                      ;78376b2c12345678a140
    or.w @(0x12345678:32,er3.l),@+er1                      ;78376b2c123456789140
    or.w @(0x12345678:32,er3.l),@(0xffff9abc:16,er1)       ;78376b2c12345678c1409abc
    or.w @(0x12345678:32,er3.l),@(0x9abcdef0:32,er1)       ;78376b2c12345678c9409abcdef0
    or.w @(0x12345678:32,er3.l),@(0xffff9abc:16,r2l.b)     ;78376b2c12345678d2409abc
    or.w @(0x12345678:32,er3.l),@(0xffff9abc:16,r2.w)     ;78376b2c12345678e2409abc
    or.w @(0x12345678:32,er3.l),@(0xffff9abc:16,er2.l)     ;78376b2c12345678f2409abc
    or.w @(0x12345678:32,er3.l),@(0x9abcdef0:32,r2l.b)     ;78376b2c12345678da409abcdef0
    or.w @(0x12345678:32,er3.l),@(0x9abcdef0:32,r2.w)     ;78376b2c12345678ea409abcdef0
    or.w @(0x12345678:32,er3.l),@(0x9abcdef0:32,er2.l)     ;78376b2c12345678fa409abcdef0
    or.w @(0x12345678:32,er3.l),@0xffff9abc:16             ;78376b2c1234567840409abc
    or.w @(0x12345678:32,er3.l),@0x9abcdef0:32             ;78376b2c1234567848409abcdef0

    or.w @0x1234:16,@er1                              ;6b1512340140
    or.w @0x1234:16,@(6:2,er1)                        ;6b1512343140
    or.w @0x1234:16,@-er1                             ;6b151234b140
    or.w @0x1234:16,@er1+                             ;6b1512348140
    or.w @0x1234:16,@er1-                             ;6b151234a140
    or.w @0x1234:16,@+er1                             ;6b1512349140
    or.w @0x1234:16,@(0xffff9abc:16,er1)              ;6b151234c1409abc
    or.w @0x1234:16,@(0x9abcdef0:32,er1)              ;6b151234c9409abcdef0
    or.w @0x1234:16,@(0xffff9abc:16,r2l.b)            ;6b151234d2409abc
    or.w @0x1234:16,@(0xffff9abc:16,r2.w)            ;6b151234e2409abc
    or.w @0x1234:16,@(0xffff9abc:16,er2.l)            ;6b151234f2409abc
    or.w @0x1234:16,@(0x9abcdef0:32,r2l.b)            ;6b151234da409abcdef0
    or.w @0x1234:16,@(0x9abcdef0:32,r2.w)            ;6b151234ea409abcdef0
    or.w @0x1234:16,@(0x9abcdef0:32,er2.l)            ;6b151234fa409abcdef0
    or.w @0x1234:16,@0xffff9abc:16                    ;6b15123440409abc
    or.w @0x1234:16,@0x9abcdef0:32                    ;6b15123448409abcdef0

    or.w @0x12345678:32,@er1                              ;6b35123456780140
    or.w @0x12345678:32,@(6:2,er1)                        ;6b35123456783140
    or.w @0x12345678:32,@-er1                             ;6b3512345678b140
    or.w @0x12345678:32,@er1+                             ;6b35123456788140
    or.w @0x12345678:32,@er1-                             ;6b3512345678a140
    or.w @0x12345678:32,@+er1                             ;6b35123456789140
    or.w @0x12345678:32,@(0xffff9abc:16,er1)              ;6b3512345678c1409abc
    or.w @0x12345678:32,@(0x9abcdef0:32,er1)              ;6b3512345678c9409abcdef0
    or.w @0x12345678:32,@(0xffff9abc:16,r2l.b)            ;6b3512345678d2409abc
    or.w @0x12345678:32,@(0xffff9abc:16,r2.w)            ;6b3512345678e2409abc
    or.w @0x12345678:32,@(0xffff9abc:16,er2.l)            ;6b3512345678f2409abc
    or.w @0x12345678:32,@(0x9abcdef0:32,r2l.b)            ;6b3512345678da409abcdef0
    or.w @0x12345678:32,@(0x9abcdef0:32,r2.w)            ;6b3512345678ea409abcdef0
    or.w @0x12345678:32,@(0x9abcdef0:32,er2.l)            ;6b3512345678fa409abcdef0
    or.w @0x12345678:32,@0xffff9abc:16                    ;6b351234567840409abc
    or.w @0x12345678:32,@0x9abcdef0:32                    ;6b351234567848409abcdef0

    or.l #0x12345678:32,er1          ;7a4112345678
    or.l #0x1234:16,er1           ;7a491234
    or.l #0x12345678:32,@er1          ;010e014812345678
    or.l #0x12345678:32,@(0xc:2,er1) ;010e314812345678
    or.l #0x12345678:32,@er1+         ;010e814812345678
    or.l #0x12345678:32,@-er1         ;010eb14812345678
    or.l #0x12345678:32,@+er1         ;010e914812345678
    or.l #0x12345678:32,@er1-         ;010ea14812345678
    or.l #0x12345678:32,@(0xffff9abc:16,er1)   ;010ec1489abc12345678
    or.l #0x12345678:32,@(0x9abcdef0:32,er1)   ;010ec9489abcdef012345678
    or.l #0x12345678:32,@(0xffff9abc:16,r2l.b) ;010ed2489abc12345678
    or.l #0x12345678:32,@(0xffff9abc:16,r2.w) ;010ee2489abc12345678
    or.l #0x12345678:32,@(0xffff9abc:16,er2.l) ;010ef2489abc12345678
    or.l #0x12345678:32,@(0x9abcdef0:32,r2l.b) ;010eda489abcdef012345678
    or.l #0x12345678:32,@(0x9abcdef0:32,r2.w) ;010eea489abcdef012345678
    or.l #0x12345678:32,@(0x9abcdef0:32,er2.l) ;010efa489abcdef012345678
    or.l #0x12345678:32,@0xffff9abc:16         ;010e40489abc12345678
    or.l #0x12345678:32,@0x9abcdef0:32         ;010e48489abcdef012345678
    or.l #0x1234:16,@er1          ;010e01401234
    or.l #0x1234:16,@(0xc:2,er1) ;010e31401234
    or.l #0x1234:16,@er1+         ;010e81401234
    or.l #0x1234:16,@-er1         ;010eb1401234
    or.l #0x1234:16,@+er1         ;010e91401234
    or.l #0x1234:16,@er1-         ;010ea1401234
    or.l #0x1234:16,@(0xffff9abc:16,er1)   ;010ec1409abc1234
    or.l #0x1234:16,@(0x9abcdef0:32,er1)   ;010ec9409abcdef01234
    or.l #0x1234:16,@(0xffff9abc:16,r2l.b) ;010ed2409abc1234
    or.l #0x1234:16,@(0xffff9abc:16,r2.w) ;010ee2409abc1234
    or.l #0x1234:16,@(0xffff9abc:16,er2.l) ;010ef2409abc1234
    or.l #0x1234:16,@(0x9abcdef0:32,r2l.b) ;010eda409abcdef01234
    or.l #0x1234:16,@(0x9abcdef0:32,r2.w) ;010eea409abcdef01234
    or.l #0x1234:16,@(0x9abcdef0:32,er2.l) ;010efa409abcdef01234
    or.l #0x1234:16,@0xffff9abc:16         ;010e40409abc1234
    or.l #0x1234:16,@0x9abcdef0:32         ;010e48409abcdef01234

    or.l er3,er1               ;01f06431

    or.l er3,@er1             ;01090143
    or.l er3,@(0xc:2,er1)    ;01093143
    or.l er3,@er1+            ;01098143
    or.l er3,@-er1            ;0109b143
    or.l er3,@+er1            ;01099143
    or.l er3,@er1-            ;0109a143
    or.l er3,@(0x1234:16,er1)      ;0109c1431234
    or.l er3,@(0x12345678:32,er1)      ;0109c94312345678
    or.l er3,@(0x1234:16,r2l.b)    ;0109d2431234
    or.l er3,@(0x1234:16,r2.w)    ;0109e2431234
    or.l er3,@(0x1234:16,er2.l)    ;0109f2431234
    or.l er3,@(0x12345678:32,r2l.b)    ;0109da4312345678
    or.l er3,@(0x12345678:32,r2.w)    ;0109ea4312345678
    or.l er3,@(0x12345678:32,er2.l)    ;0109fa4312345678
    or.l er3,@0x1234:16           ;010940431234
    or.l er3,@0x12345678:32           ;0109484312345678

    or.l @er3,er1             ;010a0341
    or.l @(0xc:2,er3),er1   ;010a3341
    or.l @er3+,er1           ;010a8341
    or.l @-er3,er1           ;010ab341
    or.l @+er3,er1           ;010a9341
    or.l @er3-,er1           ;010aa341
    or.l @(0x1234:16,er1),er1      ;010ac1411234
    or.l @(0x12345678:32,er1),er1      ;010ac94112345678
    or.l @(0x1234:16,r2l.b),er1    ;010ad2411234
    or.l @(0x1234:16,r2.w),er1    ;010ae2411234
    or.l @(0x1234:16,er2.l),er1    ;010af2411234
    or.l @(0x12345678:32,r2l.b),er1    ;010ada4112345678
    or.l @(0x12345678:32,r2.w),er1    ;010aea4112345678
    or.l @(0x12345678:32,er2.l),er1    ;010afa4112345678
    or.l @0x1234:16,er1           ;010a40411234
    or.l @0x12345678:32,er1           ;010a484112345678

    or.l @er3,@er1                                ;0104693c0140
    or.l @er3,@(0xc:2,er1)                          ;0104693c3140
    or.l @er3,@-er1                               ;0104693cb140
    or.l @er3,@er1+                               ;0104693c8140
    or.l @er3,@er1-                               ;0104693ca140
    or.l @er3,@+er1                               ;0104693c9140
    or.l @er3,@(0xffff9abc:16,er1)                ;0104693cc1409abc
    or.l @er3,@(0x9abcdef0:32,er1)                ;0104693cc9409abcdef0
    or.l @er3,@(0xffff9abc:16,r2l.b)              ;0104693cd2409abc
    or.l @er3,@(0xffff9abc:16,r2.w)              ;0104693ce2409abc
    or.l @er3,@(0xffff9abc:16,er2.l)              ;0104693cf2409abc
    or.l @er3,@(0x9abcdef0:32,r2l.b)              ;0104693cda409abcdef0
    or.l @er3,@(0x9abcdef0:32,r2.w)              ;0104693cea409abcdef0
    or.l @er3,@(0x9abcdef0:32,er2.l)              ;0104693cfa409abcdef0
    or.l @er3,@0xffff9abc:16                      ;0104693c40409abc
    or.l @er3,@0x9abcdef0:32                      ;0104693c48409abcdef0

    or.l @(0xc:2,er3),@er1                       ;0107693c0140
    or.l @(0xc:2,er3),@(0xc:2,er1)                 ;0107693c3140
    or.l @(0xc:2,er3),@-er1                      ;0107693cb140
    or.l @(0xc:2,er3),@er1+                      ;0107693c8140
    or.l @(0xc:2,er3),@er1-                      ;0107693ca140
    or.l @(0xc:2,er3),@+er1                      ;0107693c9140
    or.l @(0xc:2,er3),@(0xffff9abc:16,er1)       ;0107693cc1409abc
    or.l @(0xc:2,er3),@(0x9abcdef0:32,er1)       ;0107693cc9409abcdef0
    or.l @(0xc:2,er3),@(0xffff9abc:16,r2l.b)     ;0107693cd2409abc
    or.l @(0xc:2,er3),@(0xffff9abc:16,r2.w)     ;0107693ce2409abc
    or.l @(0xc:2,er3),@(0xffff9abc:16,er2.l)     ;0107693cf2409abc
    or.l @(0xc:2,er3),@(0x9abcdef0:32,r2l.b)     ;0107693cda409abcdef0
    or.l @(0xc:2,er3),@(0x9abcdef0:32,r2.w)     ;0107693cea409abcdef0
    or.l @(0xc:2,er3),@(0x9abcdef0:32,er2.l)     ;0107693cfa409abcdef0
    or.l @(0xc:2,er3),@0xffff9abc:16             ;0107693c40409abc
    or.l @(0xc:2,er3),@0x9abcdef0:32             ;0107693c48409abcdef0

    or.l @-er3,@er1                               ;01076d3c0140
    or.l @-er3,@(0xc:2,er1)                         ;01076d3c3140
    or.l @-er3,@-er1                              ;01076d3cb140
    or.l @-er3,@er1+                              ;01076d3c8140
    or.l @-er3,@er1-                              ;01076d3ca140
    or.l @-er3,@+er1                              ;01076d3c9140
    or.l @-er3,@(0xffff9abc:16,er1)               ;01076d3cc1409abc
    or.l @-er3,@(0x9abcdef0:32,er1)               ;01076d3cc9409abcdef0
    or.l @-er3,@(0xffff9abc:16,r2l.b)             ;01076d3cd2409abc
    or.l @-er3,@(0xffff9abc:16,r2.w)             ;01076d3ce2409abc
    or.l @-er3,@(0xffff9abc:16,er2.l)             ;01076d3cf2409abc
    or.l @-er3,@(0x9abcdef0:32,r2l.b)             ;01076d3cda409abcdef0
    or.l @-er3,@(0x9abcdef0:32,r2.w)             ;01076d3cea409abcdef0
    or.l @-er3,@(0x9abcdef0:32,er2.l)             ;01076d3cfa409abcdef0
    or.l @-er3,@0xffff9abc:16                     ;01076d3c40409abc
    or.l @-er3,@0x9abcdef0:32                     ;01076d3c48409abcdef0

    or.l @er3+,@er1                               ;01046d3c0140
    or.l @er3+,@(0xc:2,er1)                         ;01046d3c3140
    or.l @er3+,@-er1                              ;01046d3cb140
    or.l @er3+,@er1+                              ;01046d3c8140
    or.l @er3+,@er1-                              ;01046d3ca140
    or.l @er3+,@+er1                              ;01046d3c9140
    or.l @er3+,@(0xffff9abc:16,er1)               ;01046d3cc1409abc
    or.l @er3+,@(0x9abcdef0:32,er1)               ;01046d3cc9409abcdef0
    or.l @er3+,@(0xffff9abc:16,r2l.b)             ;01046d3cd2409abc
    or.l @er3+,@(0xffff9abc:16,r2.w)             ;01046d3ce2409abc
    or.l @er3+,@(0xffff9abc:16,er2.l)             ;01046d3cf2409abc
    or.l @er3+,@(0x9abcdef0:32,r2l.b)             ;01046d3cda409abcdef0
    or.l @er3+,@(0x9abcdef0:32,r2.w)             ;01046d3cea409abcdef0
    or.l @er3+,@(0x9abcdef0:32,er2.l)             ;01046d3cfa409abcdef0
    or.l @er3+,@0xffff9abc:16                     ;01046d3c40409abc
    or.l @er3+,@0x9abcdef0:32                     ;01046d3c48409abcdef0

    or.l @er3-,@er1                               ;01066d3c0140
    or.l @er3-,@(0xc:2,er1)                         ;01066d3c3140
    or.l @er3-,@-er1                              ;01066d3cb140
    or.l @er3-,@er1+                              ;01066d3c8140
    or.l @er3-,@er1-                              ;01066d3ca140
    or.l @er3-,@+er1                              ;01066d3c9140
    or.l @er3-,@(0xffff9abc:16,er1)               ;01066d3cc1409abc
    or.l @er3-,@(0x9abcdef0:32,er1)               ;01066d3cc9409abcdef0
    or.l @er3-,@(0xffff9abc:16,r2l.b)             ;01066d3cd2409abc
    or.l @er3-,@(0xffff9abc:16,r2.w)             ;01066d3ce2409abc
    or.l @er3-,@(0xffff9abc:16,er2.l)             ;01066d3cf2409abc
    or.l @er3-,@(0x9abcdef0:32,r2l.b)             ;01066d3cda409abcdef0
    or.l @er3-,@(0x9abcdef0:32,r2.w)             ;01066d3cea409abcdef0
    or.l @er3-,@(0x9abcdef0:32,er2.l)             ;01066d3cfa409abcdef0
    or.l @er3-,@0xffff9abc:16                     ;01066d3c40409abc
    or.l @er3-,@0x9abcdef0:32                     ;01066d3c48409abcdef0

    or.l @+er3,@er1                               ;01056d3c0140
    or.l @+er3,@(0xc:2,er1)                         ;01056d3c3140
    or.l @+er3,@-er1                              ;01056d3cb140
    or.l @+er3,@er1+                              ;01056d3c8140
    or.l @+er3,@er1-                              ;01056d3ca140
    or.l @+er3,@+er1                              ;01056d3c9140
    or.l @+er3,@(0xffff9abc:16,er1)               ;01056d3cc1409abc
    or.l @+er3,@(0x9abcdef0:32,er1)               ;01056d3cc9409abcdef0
    or.l @+er3,@(0xffff9abc:16,r2l.b)             ;01056d3cd2409abc
    or.l @+er3,@(0xffff9abc:16,r2.w)             ;01056d3ce2409abc
    or.l @+er3,@(0xffff9abc:16,er2.l)             ;01056d3cf2409abc
    or.l @+er3,@(0x9abcdef0:32,r2l.b)             ;01056d3cda409abcdef0
    or.l @+er3,@(0x9abcdef0:32,r2.w)             ;01056d3cea409abcdef0
    or.l @+er3,@(0x9abcdef0:32,er2.l)             ;01056d3cfa409abcdef0
    or.l @+er3,@0xffff9abc:16                     ;01056d3c40409abc
    or.l @+er3,@0x9abcdef0:32                     ;01056d3c48409abcdef0

    or.l @(0x1234:16,er3),@er1                         ;01046f3c12340140
    or.l @(0x1234:16,er3),@(0xc:2,er1)                   ;01046f3c12343140
    or.l @(0x1234:16,er3),@-er1                        ;01046f3c1234b140
    or.l @(0x1234:16,er3),@er1+                        ;01046f3c12348140
    or.l @(0x1234:16,er3),@er1-                        ;01046f3c1234a140
    or.l @(0x1234:16,er3),@+er1                        ;01046f3c12349140
    or.l @(0x1234:16,er3),@(0xffff9abc:16,er1)         ;01046f3c1234c1409abc
    or.l @(0x1234:16,er3),@(0x9abcdef0:32,er1)         ;01046f3c1234c9409abcdef0
    or.l @(0x1234:16,er3),@(0xffff9abc:16,r2l.b)       ;01046f3c1234d2409abc
    or.l @(0x1234:16,er3),@(0xffff9abc:16,r2.w)       ;01046f3c1234e2409abc
    or.l @(0x1234:16,er3),@(0xffff9abc:16,er2.l)       ;01046f3c1234f2409abc
    or.l @(0x1234:16,er3),@(0x9abcdef0:32,r2l.b)       ;01046f3c1234da409abcdef0
    or.l @(0x1234:16,er3),@(0x9abcdef0:32,r2.w)       ;01046f3c1234ea409abcdef0
    or.l @(0x1234:16,er3),@(0x9abcdef0:32,er2.l)       ;01046f3c1234fa409abcdef0
    or.l @(0x1234:16,er3),@0xffff9abc:16               ;01046f3c123440409abc
    or.l @(0x1234:16,er3),@0x9abcdef0:32               ;01046f3c123448409abcdef0

    or.l @(0x12345678:32,er3),@er1                         ;78b46b2c123456780140
    or.l @(0x12345678:32,er3),@(0xc:2,er1)                   ;78b46b2c123456783140
    or.l @(0x12345678:32,er3),@-er1                        ;78b46b2c12345678b140
    or.l @(0x12345678:32,er3),@er1+                        ;78b46b2c123456788140
    or.l @(0x12345678:32,er3),@er1-                        ;78b46b2c12345678a140
    or.l @(0x12345678:32,er3),@+er1                        ;78b46b2c123456789140
    or.l @(0x12345678:32,er3),@(0xffff9abc:16,er1)         ;78b46b2c12345678c1409abc
    or.l @(0x12345678:32,er3),@(0x9abcdef0:32,er1)         ;78b46b2c12345678c9409abcdef0
    or.l @(0x12345678:32,er3),@(0xffff9abc:16,r2l.b)       ;78b46b2c12345678d2409abc
    or.l @(0x12345678:32,er3),@(0xffff9abc:16,r2.w)       ;78b46b2c12345678e2409abc
    or.l @(0x12345678:32,er3),@(0xffff9abc:16,er2.l)       ;78b46b2c12345678f2409abc
    or.l @(0x12345678:32,er3),@(0x9abcdef0:32,r2l.b)       ;78b46b2c12345678da409abcdef0
    or.l @(0x12345678:32,er3),@(0x9abcdef0:32,r2.w)       ;78b46b2c12345678ea409abcdef0
    or.l @(0x12345678:32,er3),@(0x9abcdef0:32,er2.l)       ;78b46b2c12345678fa409abcdef0
    or.l @(0x12345678:32,er3),@0xffff9abc:16               ;78b46b2c1234567840409abc
    or.l @(0x12345678:32,er3),@0x9abcdef0:32               ;78b46b2c1234567848409abcdef0

    or.l @(0x1234:16,r3l.b),@er1                       ;01056f3c12340140
    or.l @(0x1234:16,r3l.b),@(0xc:2,er1)                 ;01056f3c12343140
    or.l @(0x1234:16,r3l.b),@-er1                      ;01056f3c1234b140
    or.l @(0x1234:16,r3l.b),@er1+                      ;01056f3c12348140
    or.l @(0x1234:16,r3l.b),@er1-                      ;01056f3c1234a140
    or.l @(0x1234:16,r3l.b),@+er1                      ;01056f3c12349140
    or.l @(0x1234:16,r3l.b),@(0xffff9abc:16,er1)       ;01056f3c1234c1409abc
    or.l @(0x1234:16,r3l.b),@(0x9abcdef0:32,er1)       ;01056f3c1234c9409abcdef0
    or.l @(0x1234:16,r3l.b),@(0xffff9abc:16,r2l.b)     ;01056f3c1234d2409abc
    or.l @(0x1234:16,r3l.b),@(0xffff9abc:16,r2.w)     ;01056f3c1234e2409abc
    or.l @(0x1234:16,r3l.b),@(0xffff9abc:16,er2.l)     ;01056f3c1234f2409abc
    or.l @(0x1234:16,r3l.b),@(0x9abcdef0:32,r2l.b)     ;01056f3c1234da409abcdef0
    or.l @(0x1234:16,r3l.b),@(0x9abcdef0:32,r2.w)     ;01056f3c1234ea409abcdef0
    or.l @(0x1234:16,r3l.b),@(0x9abcdef0:32,er2.l)     ;01056f3c1234fa409abcdef0
    or.l @(0x1234:16,r3l.b),@0xffff9abc:16             ;01056f3c123440409abc
    or.l @(0x1234:16,r3l.b),@0x9abcdef0:32             ;01056f3c123448409abcdef0

    or.l @(0x1234:16,r3.w),@er1                       ;01066f3c12340140
    or.l @(0x1234:16,r3.w),@(0xc:2,er1)                 ;01066f3c12343140
    or.l @(0x1234:16,r3.w),@-er1                      ;01066f3c1234b140
    or.l @(0x1234:16,r3.w),@er1+                      ;01066f3c12348140
    or.l @(0x1234:16,r3.w),@er1-                      ;01066f3c1234a140
    or.l @(0x1234:16,r3.w),@+er1                      ;01066f3c12349140
    or.l @(0x1234:16,r3.w),@(0xffff9abc:16,er1)       ;01066f3c1234c1409abc
    or.l @(0x1234:16,r3.w),@(0x9abcdef0:32,er1)       ;01066f3c1234c9409abcdef0
    or.l @(0x1234:16,r3.w),@(0xffff9abc:16,r2l.b)     ;01066f3c1234d2409abc
    or.l @(0x1234:16,r3.w),@(0xffff9abc:16,r2.w)     ;01066f3c1234e2409abc
    or.l @(0x1234:16,r3.w),@(0xffff9abc:16,er2.l)     ;01066f3c1234f2409abc
    or.l @(0x1234:16,r3.w),@(0x9abcdef0:32,r2l.b)     ;01066f3c1234da409abcdef0
    or.l @(0x1234:16,r3.w),@(0x9abcdef0:32,r2.w)     ;01066f3c1234ea409abcdef0
    or.l @(0x1234:16,r3.w),@(0x9abcdef0:32,er2.l)     ;01066f3c1234fa409abcdef0
    or.l @(0x1234:16,r3.w),@0xffff9abc:16             ;01066f3c123440409abc
    or.l @(0x1234:16,r3.w),@0x9abcdef0:32             ;01066f3c123448409abcdef0

    or.l @(0x1234:16,er3.l),@er1                       ;01076f3c12340140
    or.l @(0x1234:16,er3.l),@(0xc:2,er1)                 ;01076f3c12343140
    or.l @(0x1234:16,er3.l),@-er1                      ;01076f3c1234b140
    or.l @(0x1234:16,er3.l),@er1+                      ;01076f3c12348140
    or.l @(0x1234:16,er3.l),@er1-                      ;01076f3c1234a140
    or.l @(0x1234:16,er3.l),@+er1                      ;01076f3c12349140
    or.l @(0x1234:16,er3.l),@(0xffff9abc:16,er1)       ;01076f3c1234c1409abc
    or.l @(0x1234:16,er3.l),@(0x9abcdef0:32,er1)       ;01076f3c1234c9409abcdef0
    or.l @(0x1234:16,er3.l),@(0xffff9abc:16,r2l.b)     ;01076f3c1234d2409abc
    or.l @(0x1234:16,er3.l),@(0xffff9abc:16,r2.w)     ;01076f3c1234e2409abc
    or.l @(0x1234:16,er3.l),@(0xffff9abc:16,er2.l)     ;01076f3c1234f2409abc
    or.l @(0x1234:16,er3.l),@(0x9abcdef0:32,r2l.b)     ;01076f3c1234da409abcdef0
    or.l @(0x1234:16,er3.l),@(0x9abcdef0:32,r2.w)     ;01076f3c1234ea409abcdef0
    or.l @(0x1234:16,er3.l),@(0x9abcdef0:32,er2.l)     ;01076f3c1234fa409abcdef0
    or.l @(0x1234:16,er3.l),@0xffff9abc:16             ;01076f3c123440409abc
    or.l @(0x1234:16,er3.l),@0x9abcdef0:32             ;01076f3c123448409abcdef0

    or.l @(0x12345678:32,r3l.b),@er1                       ;78b56b2c123456780140
    or.l @(0x12345678:32,r3l.b),@(0xc:2,er1)                 ;78b56b2c123456783140
    or.l @(0x12345678:32,r3l.b),@-er1                      ;78b56b2c12345678b140
    or.l @(0x12345678:32,r3l.b),@er1+                      ;78b56b2c123456788140
    or.l @(0x12345678:32,r3l.b),@er1-                      ;78b56b2c12345678a140
    or.l @(0x12345678:32,r3l.b),@+er1                      ;78b56b2c123456789140
    or.l @(0x12345678:32,r3l.b),@(0xffff9abc:16,er1)       ;78b56b2c12345678c1409abc
    or.l @(0x12345678:32,r3l.b),@(0x9abcdef0:32,er1)       ;78b56b2c12345678c9409abcdef0
    or.l @(0x12345678:32,r3l.b),@(0xffff9abc:16,r2l.b)     ;78b56b2c12345678d2409abc
    or.l @(0x12345678:32,r3l.b),@(0xffff9abc:16,r2.w)     ;78b56b2c12345678e2409abc
    or.l @(0x12345678:32,r3l.b),@(0xffff9abc:16,er2.l)     ;78b56b2c12345678f2409abc
    or.l @(0x12345678:32,r3l.b),@(0x9abcdef0:32,r2l.b)     ;78b56b2c12345678da409abcdef0
    or.l @(0x12345678:32,r3l.b),@(0x9abcdef0:32,r2.w)     ;78b56b2c12345678ea409abcdef0
    or.l @(0x12345678:32,r3l.b),@(0x9abcdef0:32,er2.l)     ;78b56b2c12345678fa409abcdef0
    or.l @(0x12345678:32,r3l.b),@0xffff9abc:16             ;78b56b2c1234567840409abc
    or.l @(0x12345678:32,r3l.b),@0x9abcdef0:32             ;78b56b2c1234567848409abcdef0

    or.l @(0x12345678:32,r3.w),@er1                       ;78b66b2c123456780140
    or.l @(0x12345678:32,r3.w),@(0xc:2,er1)                 ;78b66b2c123456783140
    or.l @(0x12345678:32,r3.w),@-er1                      ;78b66b2c12345678b140
    or.l @(0x12345678:32,r3.w),@er1+                      ;78b66b2c123456788140
    or.l @(0x12345678:32,r3.w),@er1-                      ;78b66b2c12345678a140
    or.l @(0x12345678:32,r3.w),@+er1                      ;78b66b2c123456789140
    or.l @(0x12345678:32,r3.w),@(0xffff9abc:16,er1)       ;78b66b2c12345678c1409abc
    or.l @(0x12345678:32,r3.w),@(0x9abcdef0:32,er1)       ;78b66b2c12345678c9409abcdef0
    or.l @(0x12345678:32,r3.w),@(0xffff9abc:16,r2l.b)     ;78b66b2c12345678d2409abc
    or.l @(0x12345678:32,r3.w),@(0xffff9abc:16,r2.w)     ;78b66b2c12345678e2409abc
    or.l @(0x12345678:32,r3.w),@(0xffff9abc:16,er2.l)     ;78b66b2c12345678f2409abc
    or.l @(0x12345678:32,r3.w),@(0x9abcdef0:32,r2l.b)     ;78b66b2c12345678da409abcdef0
    or.l @(0x12345678:32,r3.w),@(0x9abcdef0:32,r2.w)     ;78b66b2c12345678ea409abcdef0
    or.l @(0x12345678:32,r3.w),@(0x9abcdef0:32,er2.l)     ;78b66b2c12345678fa409abcdef0
    or.l @(0x12345678:32,r3.w),@0xffff9abc:16             ;78b66b2c1234567840409abc
    or.l @(0x12345678:32,r3.w),@0x9abcdef0:32             ;78b66b2c1234567848409abcdef0

    or.l @(0x12345678:32,er3.l),@er1                       ;78b76b2c123456780140
    or.l @(0x12345678:32,er3.l),@(0xc:2,er1)                 ;78b76b2c123456783140
    or.l @(0x12345678:32,er3.l),@-er1                      ;78b76b2c12345678b140
    or.l @(0x12345678:32,er3.l),@er1+                      ;78b76b2c123456788140
    or.l @(0x12345678:32,er3.l),@er1-                      ;78b76b2c12345678a140
    or.l @(0x12345678:32,er3.l),@+er1                      ;78b76b2c123456789140
    or.l @(0x12345678:32,er3.l),@(0xffff9abc:16,er1)       ;78b76b2c12345678c1409abc
    or.l @(0x12345678:32,er3.l),@(0x9abcdef0:32,er1)       ;78b76b2c12345678c9409abcdef0
    or.l @(0x12345678:32,er3.l),@(0xffff9abc:16,r2l.b)     ;78b76b2c12345678d2409abc
    or.l @(0x12345678:32,er3.l),@(0xffff9abc:16,r2.w)     ;78b76b2c12345678e2409abc
    or.l @(0x12345678:32,er3.l),@(0xffff9abc:16,er2.l)     ;78b76b2c12345678f2409abc
    or.l @(0x12345678:32,er3.l),@(0x9abcdef0:32,r2l.b)     ;78b76b2c12345678da409abcdef0
    or.l @(0x12345678:32,er3.l),@(0x9abcdef0:32,r2.w)     ;78b76b2c12345678ea409abcdef0
    or.l @(0x12345678:32,er3.l),@(0x9abcdef0:32,er2.l)     ;78b76b2c12345678fa409abcdef0
    or.l @(0x12345678:32,er3.l),@0xffff9abc:16             ;78b76b2c1234567840409abc
    or.l @(0x12345678:32,er3.l),@0x9abcdef0:32             ;78b76b2c1234567848409abcdef0

    or.l @0x1234:16,@er1                              ;01046b0c12340140
    or.l @0x1234:16,@(0xc:2,er1)                        ;01046b0c12343140
    or.l @0x1234:16,@-er1                             ;01046b0c1234b140
    or.l @0x1234:16,@er1+                             ;01046b0c12348140
    or.l @0x1234:16,@er1-                             ;01046b0c1234a140
    or.l @0x1234:16,@+er1                             ;01046b0c12349140
    or.l @0x1234:16,@(0xffff9abc:16,er1)              ;01046b0c1234c1409abc
    or.l @0x1234:16,@(0x9abcdef0:32,er1)              ;01046b0c1234c9409abcdef0
    or.l @0x1234:16,@(0xffff9abc:16,r2l.b)            ;01046b0c1234d2409abc
    or.l @0x1234:16,@(0xffff9abc:16,r2.w)            ;01046b0c1234e2409abc
    or.l @0x1234:16,@(0xffff9abc:16,er2.l)            ;01046b0c1234f2409abc
    or.l @0x1234:16,@(0x9abcdef0:32,r2l.b)            ;01046b0c1234da409abcdef0
    or.l @0x1234:16,@(0x9abcdef0:32,r2.w)            ;01046b0c1234ea409abcdef0
    or.l @0x1234:16,@(0x9abcdef0:32,er2.l)            ;01046b0c1234fa409abcdef0
    or.l @0x1234:16,@0xffff9abc:16                    ;01046b0c123440409abc
    or.l @0x1234:16,@0x9abcdef0:32                    ;01046b0c123448409abcdef0

    or.l @0x12345678:32,@er1                              ;01046b2c123456780140
    or.l @0x12345678:32,@(0xc:2,er1)                        ;01046b2c123456783140
    or.l @0x12345678:32,@-er1                             ;01046b2c12345678b140
    or.l @0x12345678:32,@er1+                             ;01046b2c123456788140
    or.l @0x12345678:32,@er1-                             ;01046b2c12345678a140
    or.l @0x12345678:32,@+er1                             ;01046b2c123456789140
    or.l @0x12345678:32,@(0xffff9abc:16,er1)              ;01046b2c12345678c1409abc
    or.l @0x12345678:32,@(0x9abcdef0:32,er1)              ;01046b2c12345678c9409abcdef0
    or.l @0x12345678:32,@(0xffff9abc:16,r2l.b)            ;01046b2c12345678d2409abc
    or.l @0x12345678:32,@(0xffff9abc:16,r2.w)            ;01046b2c12345678e2409abc
    or.l @0x12345678:32,@(0xffff9abc:16,er2.l)            ;01046b2c12345678f2409abc
    or.l @0x12345678:32,@(0x9abcdef0:32,r2l.b)            ;01046b2c12345678da409abcdef0
    or.l @0x12345678:32,@(0x9abcdef0:32,r2.w)            ;01046b2c12345678ea409abcdef0
    or.l @0x12345678:32,@(0x9abcdef0:32,er2.l)            ;01046b2c12345678fa409abcdef0
    or.l @0x12345678:32,@0xffff9abc:16                    ;01046b2c1234567840409abc
    or.l @0x12345678:32,@0x9abcdef0:32                    ;01046b2c1234567848409abcdef0

	.end