summaryrefslogtreecommitdiff
path: root/plugins/ao/eng_dsf/arm7i.c
blob: 1b831857cd0f063211daf5ac6bd91f6e18f93a10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
//
// ARM7 processor emulator - interpreter core
// version 1.6 / 2008-02-16
// (c) Radoslaw Balcewicz
//

#include "arm7.h"
#include "arm7i.h"
#include "dc_hw.h"

  //--------------------------------------------------------------------------
  // definitions and macros

 /** PC is being incremented after every instruction fetch, so we adjust for
 that on all stores and jumps. */
#define PC_ADJUSTMENT (-4)

  /** Memory access routines. */
#include "arm7memil.c"

  /** Bit shifts compatible with IA32. */
#define SHL(w, k) (((UINT32)(w)) << (k))
#define SHR(w, k) (((UINT32)(w)) >> (k))
#define SAR(w, k) (((INT32)(w)) >> (k))
#define ROR(w, k) (SHR (w, k) | SHL (w, 32 - (k)))

  /** Byte rotation for unaligned 32-bit read. */
#define RBOD(w, i) (ROR (w, (i) * 8))

  /** Data processing macros. */
#define NEG(i) ((i) & (1 << 31))
#define POS(i) (~(i) & (1 << 31))
#define ADDCARRY(a, b, c) \
  ((NEG (a) & NEG (b)) |\
  (NEG (a) & POS (c)) |\
  (NEG (b) & POS (c))) ? 1 : 0;
#define ADDOVERFLOW(a, b, c) \
  ((NEG (a) & NEG (b) & POS (c)) |\
  (POS (a) & POS (b) & NEG (c))) ? 1 : 0;
#define SUBCARRY(a, b, c) \
  ((NEG (a) & POS (b)) |\
  (NEG (a) & POS (c)) |\
  (POS (b) & POS (c))) ? 1 : 0;
#define SUBOVERFLOW(a, b, c)\
  ((NEG (a) & POS (b) & POS (c)) |\
  (POS (a) & NEG (b) & NEG (c))) ? 1 : 0;
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  // private functions
	   
  /** Condition EQ. */
static int R_WEQ (struct sARM7 *cpu);
  /** Condition NE. */
static int R_WNE (struct sARM7 *cpu);
  /** Condition CS. */
static int R_WCS (struct sARM7 *cpu);
  /** Condition CC. */
static int R_WCC (struct sARM7 *cpu);
  /** Condition MI. */
static int R_WMI (struct sARM7 *cpu);
  /** Condition PL. */
static int R_WPL (struct sARM7 *cpu);
  /** Condition VS. */
static int R_WVS (struct sARM7 *cpu);
  /** Condition VC. */
static int R_WVC (struct sARM7 *cpu);
  /** Condition HI. */
static int R_WHI (struct sARM7 *cpu);
  /** Condition LS. */
static int R_WLS (struct sARM7 *cpu);
  /** Condition GE. */
static int R_WGE (struct sARM7 *cpu);
  /** Condition LT. */
static int R_WLT (struct sARM7 *cpu);
  /** Condition GT. */
static int R_WGT (struct sARM7 *cpu);
  /** Condition LE. */
static int R_WLE (struct sARM7 *cpu);
  /** Condition AL. */
static int R_WAL (struct sARM7 *cpu);
  /** Undefined condition. */
static int R_Wxx (struct sARM7 *cpu);

  /** Calculates barrel shifter output. */
static UINT32 WyliczPrzes (struct sARM7 *cpu);
  /** Logical shift left. */
static UINT32 LSL_x (struct sARM7 *cpu, UINT32 w, int i);
  /** Logical shift right. */
static UINT32 LSR_x (struct sARM7 *cpu, UINT32 w, int i);
  /** Arithmetic shift right. */
static UINT32 ASR_x (struct sARM7 *cpu, UINT32 w, int i);
  /** Rotate right. */
static UINT32 ROR_x (struct sARM7 *cpu, UINT32 w, int i);
  /** Rotate right extended. */
static UINT32 RRX_1 (struct sARM7 *cpu, UINT32 w);

  /** Group 00x opcodes. */
static void R_G00x (struct sARM7 *cpu);
  /** Multiply instructions. */
static void R_MUL_MLA (struct sARM7 *cpu);
  /** Single data swap. */
static void R_SWP (struct sARM7 *cpu);
  /** PSR Transfer. */
static void R_PSR (struct sARM7 *cpu);
  /** Data processing instructions. */
static void R_DP (struct sARM7 *cpu);
  /** Data processing result writeback. */
static void R_WynikDP (struct sARM7 *cpu, ARM7_REG w);
  /** Data processing flags writeback. */
static void R_FlagiDP (struct sARM7 *cpu, ARM7_REG w);
  /** Single data transfer. */
static void R_SDT (struct sARM7 *cpu);
  /** Rozkaz "Undefined". */
static void R_Und (struct sARM7 *cpu);
  /** Block Data Transfer. */
static void R_BDT (struct sARM7 *cpu);
  /** Block load instructions. */
static void R_LDM (struct sARM7 *cpu, int Rn, UINT32 adres);
  /** Block store instructions. */
static void R_STM (struct sARM7 *cpu, int Rn, UINT32 adres);
  /** Branch/Branch with link. */
static void R_B_BL (struct sARM7 *cpu);
  /** Group 110 opcodes. */
static void R_G110 (struct sARM7 *cpu);
  /** Group 111 opcodes. */
static void R_G111 (struct sARM7 *cpu);

#ifdef ARM7_THUMB
  /** Halfword and Signed Data Transfer. */
static void R_HSDT (struct sARM7 *cpu);
#endif
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  // private data

  /** Flag testing functions for conditional execution. */
static int (*s_tabWar [16]) (struct sARM7 *cpu) = {R_WEQ, R_WNE, R_WCS, R_WCC, R_WMI, R_WPL,
 R_WVS, R_WVC, R_WHI, R_WLS, R_WGE, R_WLT, R_WGT, R_WLE, R_WAL, R_Wxx};
  /** Handler table for instruction groups. */
static void (*s_tabGrup [8]) (struct sARM7 *cpu) = {R_G00x, R_G00x, R_SDT, R_SDT, R_BDT,
 R_B_BL, R_G110, R_G111};
  /** Data processing instructions split to arithmetic and logical. */
static int s_tabAL [16] = {FALSE, FALSE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE,
 FALSE, FALSE, TRUE, TRUE, FALSE, FALSE, FALSE, FALSE};

  /** Cycles it took for current instruction to complete. */
static int s_cykle;
  //--------------------------------------------------------------------------


  // public functions


  //--------------------------------------------------------------------------
  /** Single step, returns number of burned cycles. */
int ARM7i_Step (struct sARM7 *cpu)
  {
  cpu->kod = arm7_read_32 (cpu, cpu->Rx [ARM7_PC] & ~3);

  // we increment PC here, and if there's a load from memory it will simply
  // overwrite it (all PC modyfing code should be aware of this)
  cpu->Rx [ARM7_PC] += 4;
  s_cykle = 2;
  // condition test and group selection
  if (s_tabWar [(cpu->kod >> 28) & 15] (cpu))
    s_tabGrup [(cpu->kod >> 25) & 7] (cpu);
  return s_cykle;
  }
  //--------------------------------------------------------------------------


  // private functions


  //--------------------------------------------------------------------------
  /** Condition EQ. */
int R_WEQ (struct sARM7 *cpu)
  {
  // "Z set"
  return cpu->Rx [ARM7_CPSR] & ARM7_CPSR_Z;
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Condition NE. */
int R_WNE (struct sARM7 *cpu)
  {
  // "Z clear"
  return !(cpu->Rx [ARM7_CPSR] & ARM7_CPSR_Z);
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Condition CS. */
int R_WCS (struct sARM7 *cpu)
  {
  // "C set"
  return cpu->Rx [ARM7_CPSR] & ARM7_CPSR_C;
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Condition CC. */
int R_WCC (struct sARM7 *cpu)
  {
  // "C clear"
  return !(cpu->Rx [ARM7_CPSR] & ARM7_CPSR_C);
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Condition MI. */
int R_WMI (struct sARM7 *cpu)
  {
  // "N set"
  return cpu->Rx [ARM7_CPSR] & ARM7_CPSR_N;
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Condition PL. */
int R_WPL (struct sARM7 *cpu)
  {
  // "N clear"
  return !(cpu->Rx [ARM7_CPSR] & ARM7_CPSR_N);
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Condition VS. */
int R_WVS (struct sARM7 *cpu)
  {
  // "V set"
  return cpu->Rx [ARM7_CPSR] & ARM7_CPSR_V;
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Condition VC. */
int R_WVC (struct sARM7 *cpu)
  {
  // "V clear"
  return !(cpu->Rx [ARM7_CPSR] & ARM7_CPSR_V);
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Condition HI. */
int R_WHI (struct sARM7 *cpu)
  {
  // "C set and Z clear"
  return (cpu->Rx [ARM7_CPSR] & ARM7_CPSR_C) &&\
 !(cpu->Rx [ARM7_CPSR] & ARM7_CPSR_Z);
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Condition LS. */
int R_WLS (struct sARM7 *cpu)
  {
  // "C clear or Z set"
  return !(cpu->Rx [ARM7_CPSR] & ARM7_CPSR_C) ||\
 (cpu->Rx [ARM7_CPSR] & ARM7_CPSR_Z);
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Condition GE. */
int R_WGE (struct sARM7 *cpu)
  {
  // "N equals V"
  return (cpu->Rx [ARM7_CPSR] & ARM7_CPSR_N) &&\
 (cpu->Rx [ARM7_CPSR] & ARM7_CPSR_V) || !(cpu->Rx [ARM7_CPSR] & ARM7_CPSR_N) &&\
 !(cpu->Rx [ARM7_CPSR] & ARM7_CPSR_V);
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Condition LT. */
int R_WLT (struct sARM7 *cpu)
  {
  // "N not equal to V"
  return !(cpu->Rx [ARM7_CPSR] & ARM7_CPSR_N) &&\
 (cpu->Rx [ARM7_CPSR] & ARM7_CPSR_V) || (cpu->Rx [ARM7_CPSR] & ARM7_CPSR_N) &&\
 !(cpu->Rx [ARM7_CPSR] & ARM7_CPSR_V);
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Condition GT. */
int R_WGT (struct sARM7 *cpu)
  {
  // "Z clear AND (N equals V)"
  return !(cpu->Rx [ARM7_CPSR] & ARM7_CPSR_Z) && R_WGE (cpu);
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Condition LE. */
int R_WLE (struct sARM7 *cpu)
  {
  // "Z set OR (N not equal to V)"
  return (cpu->Rx [ARM7_CPSR] & ARM7_CPSR_Z) || R_WLT (cpu);
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Condition AL. */
int R_WAL (struct sARM7 *cpu)
  {
  // "(ignored)"
  return TRUE;
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Undefined condition. */
int R_Wxx (struct sARM7 *cpu)
  {
  // behaviour undefined
  return FALSE;
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Calculates barrel shifter output. */
UINT32 WyliczPrzes (struct sARM7 *cpu)
  {
  int Rm, Rs, i;
  UINT32 w;

  // Rm is source for the shift operation
  Rm = cpu->kod & 15;

  if (cpu->kod & (1 << 4))
    {
    s_cykle++;
    // shift count in Rs (8 lowest bits)
    if (Rm != ARM7_PC)
      w = cpu->Rx [Rm];
    else
      w = (cpu->Rx [ARM7_PC] & ~3) + 12 + PC_ADJUSTMENT;
    // Rs can't be PC
    Rs = (cpu->kod >> 8) & 15;
    i = (UINT8)cpu->Rx [Rs];
    if (i == 0)
      {
      // special case
      cpu->carry = (cpu->Rx [ARM7_CPSR] & ARM7_CPSR_C) ? 1 : 0;
      return w;
      }

    switch ((cpu->kod >> 5) & 3)
      {
      case 0:
        w = LSL_x (cpu, w, i);
        break;
      case 1:
        w = LSR_x (cpu, w, i);
        break;
      case 2:
        w = ASR_x (cpu, w, i);
        break;
      case 3:
        w = ROR_x (cpu, w, i);
        break;
      }
    }
  else
    {
    // shift count as immediate in opcode
    if (Rm != ARM7_PC)
      w = cpu->Rx [Rm];
    else
      w = (cpu->Rx [ARM7_PC] & ~3) + 8 + PC_ADJUSTMENT;
    i = (cpu->kod >> 7) & 31;

    switch ((cpu->kod >> 5) & 3)
      {
      case 0:
        w = LSL_x (cpu, w, i);
        break;
      case 1:
        if (i > 0)
          w = LSR_x (cpu, w, i);
        else
          w = LSR_x (cpu, w, 32);
        break;
      case 2:
        if (i > 0)
          w = ASR_x (cpu, w, i);
        else
          w = ASR_x (cpu, w, 32);
        break;
      case 3:
        if (i > 0)
          w = ROR_x (cpu, w, i);
        else
          w = RRX_1 (cpu, w);
        break;
      }
    }
  return w;
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Logical shift left. */
UINT32 LSL_x (struct sARM7 *cpu, UINT32 w, int i)
{
	// LSL #0 copies C into carry out and returns unmodified value
	if (i == 0)
	{
		cpu->carry = (cpu->Rx [ARM7_CPSR] & ARM7_CPSR_C) ? 1 : 0;
		return w;
	}
	// LSL #32 copies LSB to carry out and returns zero
	if (i == 32)
	{
		cpu->carry = w & 1;
		return 0;
	}
	// LSL > #32 returns zero for both carry and output
	if (i > 32)
	{
		cpu->carry = 0;
		return 0;
	}
        // normal shift
	cpu->carry = (w & (1 << (32 - i))) ? 1 : 0;
	w = SHL (w, i);
	return w;
}
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Logical shift right. */
UINT32 LSR_x (struct sARM7 *cpu, UINT32 w, int i)
{
	// LSR #32 copies MSB to carry out and returns zero
	if (i == 32)
	{
		cpu->carry = (w & (1 << 31)) ? 1 : 0;
		return 0;
	}
	// LSR > #32 returns zero for both carry and output
	if (i > 32)
	{
		cpu->carry = 0;
		return 0;
	}
        // normal shift
	cpu->carry = (w & (1 << (i - 1))) ? 1 : 0;
	w = SHR (w, i);
	return w;
}
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Arithmetic shift right. */
UINT32 ASR_x (struct sARM7 *cpu, UINT32 w, int i)
{
	// ASR >= #32 carry out and output value depends on the minus sign
	if (i >= 32)
	{
		if (w & (1 << 31))
		{
			cpu->carry = 1;
			return ~0;
		}

		cpu->carry = 0;
		return 0;
	}
	// normal shift
	cpu->carry = (w & (1 << (i - 1))) ? 1 : 0;
	w = SAR (w, i);
	return w;
}
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Rotate right. */
UINT32 ROR_x (struct sARM7 *cpu, UINT32 w, int i)
{
	// mask count to [0; 31]
	i &= 0x1f;
	// ROR #32,#64,etc. copies MSB into carry out and returns unmodified value
	if (i == 0)
	{
		cpu->carry = (w & (1 << 31)) ? 1 : 0;
		return w;
	}
	// normal shift
	cpu->carry = (w & (1 << (i-1))) ? 1 : 0;
	w = ROR (w, i);
	return w;
}
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Rotate right extended. */
UINT32 RRX_1 (struct sARM7 *cpu, UINT32 w)
  {
  // same as RCR by 1 in IA32
  cpu->carry = w & 1;
  return (w >> 1) | ((cpu->Rx [ARM7_CPSR] & ARM7_CPSR_C) << 2);
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Group 00x opcodes. */
void R_G00x (struct sARM7 *cpu)
  {
#ifdef ARM7_THUMB
  // 24 constant bits
  if ((cpu->kod & 0x0ffffff0) == 0x012fff10)	// BX - branch with possible mode transfer
  {
  #ifdef ARM7_THUMB
  	int Rn = cpu->Rx[cpu->kod & 0xf];

	// switching to Thumb mode?
	if (Rn & 1)
	{
		ARM7_SetCPSR(cpu->Rx[ARM7_CPSR] | ARM7_CPSR_T);
	}
       
	cpu->Rx[ARM7_PC] = Rn & ~1;
  #endif
  }
  // 15 constant bits
  else if ((cpu->kod & 0x0fb00ff0) == 0x01000090)
    R_SWP (cpu);
  // 10 constant bits
  else if ((cpu->kod & 0x0fc000f0) == 0x00000090)
    R_MUL_MLA (cpu);
  // 10 constant bits
  else if ((cpu->kod & 0x0e400f90) == 0x00000090)
    R_HSDT (cpu);
  // 9 constant bits
  else if ((cpu->kod & 0x0f8000f0) == 0x00800090)
  {
//    logerror("G00x / Multiply long\n");
  }
  // 6 constant bits	 
  else if ((cpu->kod & 0x0e400090) == 0x00400090)
    R_HSDT (cpu);
  // 2 constant bits
  else
    {
    if ((cpu->kod & 0x01900000) == 0x01000000)
      // TST, TEQ, CMP & CMN without S bit are "PSR Transfer"
      R_PSR (cpu);
    else
      // the rest is "Data processing"
      R_DP (cpu);
    }
#else
  if ((cpu->kod & 0x03b00090) == 0x01000090)
    R_SWP (cpu);
  else if ((cpu->kod & 0x03c00090) == 0x00000090)
    R_MUL_MLA (cpu);
  else
    {
    if ((cpu->kod & 0x01900000) == 0x01000000)
      // TST, TEQ, CMP & CMN without S bit are "PSR Transfer"
      R_PSR (cpu);
    else
      // the rest is "Data processing"
      R_DP (cpu);
    }
#endif
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Single data swap. */
void R_SWP (struct sARM7 *cpu)
  {
  int Rn, Rd, Rm;
  UINT32 adres, w;

#define BIT_B (cpu->kod & (1 << 21))

  s_cykle += 4;
  // none of these can be PC
  Rn = (cpu->kod >> 16) & 15;
  Rd = (cpu->kod >> 12) & 15;
  Rm = cpu->kod & 15;
  adres = cpu->Rx [Rn];

  if (BIT_B)
    {
    // "byte"
    w = arm7_read_8 (cpu, adres);
    arm7_write_8 (cpu, adres, (UINT8)cpu->Rx [Rm]);
    }
  else
    {
    // "word"
    w = RBOD (arm7_read_32 (cpu, adres & ~3), adres & 3);
    arm7_write_32 (cpu, adres & ~3, cpu->Rx [Rm]);
    }
  cpu->Rx [Rd] = w;

#undef BIT_B
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Multiply instructions. */
void R_MUL_MLA (struct sARM7 *cpu)
  {
  int Rm, Rs, Rn, Rd;
  UINT32 wynik;

#define BIT_A (cpu->kod & (1 << 21))
#define BIT_S (cpu->kod & (1 << 20))

  s_cykle += 2;
  // none of these can be PC, also Rd != Rm
  Rd = (cpu->kod >> 16) & 15,
  Rs = (cpu->kod >> 8) & 15,
  Rm = cpu->kod & 15;

  // MUL
  wynik = cpu->Rx [Rm] * cpu->Rx [Rs];
  if (BIT_A)
    {
    // MLA
    Rn = (cpu->kod >> 12) & 15;
    wynik += cpu->Rx [Rn];
    }
  cpu->Rx [Rd] = wynik;

  if (BIT_S)
    {
    // V remains unchanged, C is undefined
    cpu->Rx [ARM7_CPSR] &= ~(ARM7_CPSR_N | ARM7_CPSR_Z);
    if (wynik == 0)
      cpu->Rx [ARM7_CPSR] |= ARM7_CPSR_Z;
    cpu->Rx [ARM7_CPSR] |= wynik & 0x80000000;
    }

#undef BIT_S
#undef BIT_A
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** PSR Transfer. */
void R_PSR (struct sARM7 *cpu)
  {
  int Rd, Rm;
  UINT32 w, arg;

#define BIT_I (cpu->kod & (1 << 25))
#define BIT_P (cpu->kod & (1 << 22))

  // none of the registers involved can be PC

  if (cpu->kod & (1 << 21))
    {
    // MSR
    Rm = cpu->kod & 15;
    if (BIT_I)
      // immediate (lower 12 bits)
      arg = ROR (cpu->kod & 0xff, ((cpu->kod >> 8) & 0xf) * 2);
    else
      // register
      arg = cpu->Rx [Rm];

    // decode mask bits
    if (BIT_P)
      {
      w = cpu->Rx [ARM7_SPSR];
      if (ARM7_CPSR_M (cpu->Rx [ARM7_CPSR]) > ARM7_CPSR_M_usr &&\
 ARM7_CPSR_M (cpu->Rx [ARM7_CPSR]) < ARM7_CPSR_M_sys)
        {
        if (cpu->kod & (1 << 16))
          w = (w & 0xffffff00) | (arg & 0x000000ff);
        if (cpu->kod & (1 << 17))
          w = (w & 0xffff00ff) | (arg & 0x0000ff00);
        if (cpu->kod & (1 << 18))
          w = (w & 0xff00ffff) | (arg & 0x00ff0000);
        if (cpu->kod & (1 << 19))
          // ARMv5E should have 0xf8000000 argument mask
          w = (w & 0x00ffffff) | (arg & 0xf0000000);
        }
      // force valid mode
      w |= 0x10;
      cpu->Rx [ARM7_SPSR] = w;
      }
    else
      {
      w = cpu->Rx [ARM7_CPSR];
      // only flags can be changed in User mode
      if (ARM7_CPSR_M (cpu->Rx [ARM7_CPSR]) != ARM7_CPSR_M_usr)
        {
        if (cpu->kod & (1 << 16))
          w = (w & 0xffffff00) | (arg & 0x000000ff);
        if (cpu->kod & (1 << 17))
          w = (w & 0xffff00ff) | (arg & 0x0000ff00);
        if (cpu->kod & (1 << 18))
          w = (w & 0xff00ffff) | (arg & 0x00ff0000);
        }
      if (cpu->kod & (1 << 19))
        // ARMv5E should have 0xf8000000 argument mask
        w = (w & 0x00ffffff) | (arg & 0xf0000000);
      // force valid mode
      w |= 0x10;
      ARM7_SetCPSR (cpu, w);
      }
    }
  else
    {
    // MRS
    Rd = (cpu->kod >> 12) & 15;
    if (BIT_P)
      cpu->Rx [Rd] = cpu->Rx [ARM7_SPSR];
    else
      cpu->Rx [Rd] = cpu->Rx [ARM7_CPSR];
    }

#undef BIT_P
#undef BIT_I
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Data processing instructions. */
void R_DP (struct sARM7 *cpu)
  {
  int Rn;
  ARM7_REG arg1, arg2, w;

#define BIT_I (cpu->kod & (1 << 25))

  // Rn can be PC, so we need to account for that
  Rn = (cpu->kod >> 16) & 15;

  if (BIT_I)
    {
    if (Rn != ARM7_PC)
      arg1 = cpu->Rx [Rn];
    else
      arg1 = (cpu->Rx [ARM7_PC] & ~3) + 8 + PC_ADJUSTMENT;
    // immediate in lowest 12 bits
    arg2 = ROR (cpu->kod & 0xff, ((cpu->kod >> 8) & 0xf) * 2);
    // preload carry out from C
    cpu->carry = (cpu->Rx [ARM7_CPSR] & ARM7_CPSR_C) ? 1 : 0;
    }
  else
    {
    if (Rn != ARM7_PC)
      arg1 = cpu->Rx [Rn];
    else
      // register or immediate shift?
      if (cpu->kod & (1 << 4))
        arg1 = (cpu->Rx [ARM7_PC] & ~3) + 12 + PC_ADJUSTMENT;
      else
        arg1 = (cpu->Rx [ARM7_PC] & ~3) + 8 + PC_ADJUSTMENT;
    // calculate in barrel shifter
    arg2 = WyliczPrzes (cpu);
    }

  // decode instruction type
  switch ((cpu->kod >> 21) & 15)
    {
    case 0:
      // AND
      R_WynikDP (cpu, arg1 & arg2);
      break;

    case 1:
      // EOR
      R_WynikDP (cpu, arg1 ^ arg2);
      break;

    case 2:
      // SUB
      w = arg1 - arg2;
      cpu->carry = SUBCARRY (arg1, arg2, w);
      cpu->overflow = SUBOVERFLOW (arg1, arg2, w);
      R_WynikDP (cpu, w);
      break;

    case 3:
      // RSB
      w = arg2 - arg1;
      cpu->carry = SUBCARRY (arg2, arg1, w);
      cpu->overflow = SUBOVERFLOW (arg2, arg1, w);
      R_WynikDP (cpu, w);
      break;

    case 4:
      // ADD
      w = arg1 + arg2;
      cpu->carry = ADDCARRY (arg1, arg2, w);
      cpu->overflow = ADDOVERFLOW (arg1, arg2, w);
      R_WynikDP (cpu, w);
      break;

    case 5:
      // ADC
      w = arg1 + arg2 + ((cpu->Rx [ARM7_CPSR] & ARM7_CPSR_C) ? 1 : 0);
      cpu->carry = ADDCARRY (arg1, arg2, w);
      cpu->overflow = ADDOVERFLOW (arg1, arg2, w);
      R_WynikDP (cpu, w);
      break;

    case 6:
      // SBC
      w = arg1 - arg2 - ((cpu->Rx [ARM7_CPSR] & ARM7_CPSR_C) ? 0 : 1);
      cpu->carry = SUBCARRY (arg1, arg2, w);
      cpu->overflow = SUBOVERFLOW (arg1, arg2, w);
      R_WynikDP (cpu, w);
      break;

    case 7:
      // RSC
      w = arg2 - arg1 - ((cpu->Rx [ARM7_CPSR] & ARM7_CPSR_C) ? 0 : 1);
      cpu->carry = SUBCARRY (arg2, arg1, w);
      cpu->overflow = SUBOVERFLOW (arg2, arg1, w);
      R_WynikDP (cpu, w);
      break;

    case 8:
      // TST
      R_FlagiDP (cpu, arg1 & arg2);
      break;

    case 9:
      // TEQ
      R_FlagiDP (cpu, arg1 ^ arg2);
      break;

    case 10:
      // CMP
      w = arg1 - arg2;
      cpu->carry = SUBCARRY (arg1, arg2, w);
      cpu->overflow = SUBOVERFLOW (arg1, arg2, w);
      R_FlagiDP (cpu, w);
      break;

    case 11:
      // CMN
      w = arg1 + arg2;
      cpu->carry = ADDCARRY (arg1, arg2, w);
      cpu->overflow = ADDOVERFLOW (arg1, arg2, w);
      R_FlagiDP (cpu, w);
      break;

    case 12:
      // ORR
      R_WynikDP (cpu, arg1 | arg2);
      break;

    case 13:
      // MOV
      R_WynikDP (cpu, arg2);
      break;

    case 14:
      // BIC
      R_WynikDP (cpu, arg1 & ~arg2);
      break;

    case 15:
      // MVN
      R_WynikDP (cpu, ~arg2);
      break;
    }

#undef BIT_I
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Data processing result writeback. */
void R_WynikDP (struct sARM7 *cpu, ARM7_REG w)
  {
  int Rd;

#define BIT_S (cpu->kod & (1 << 20))

  Rd = (cpu->kod >> 12) & 15;
  cpu->Rx [Rd] = w;
  if (BIT_S)
    {
    if (Rd == ARM7_PC)
      {
      s_cykle += 4;
      // copy current SPSR to CPSR
      ARM7_SetCPSR (cpu, cpu->Rx [ARM7_SPSR]);
      }
    else
      // save new flags
      R_FlagiDP (cpu, w);
    }

#undef BIT_S
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Data processing flags writeback. */
void R_FlagiDP (struct sARM7 *cpu, ARM7_REG w)
  {
  // arithmetic or logical instruction?
  if (s_tabAL [(cpu->kod >> 21) & 15])
    {
    cpu->Rx [ARM7_CPSR] &= ~(ARM7_CPSR_N | ARM7_CPSR_Z | ARM7_CPSR_C |\
 ARM7_CPSR_V);
    cpu->Rx [ARM7_CPSR] |= cpu->overflow << 28;
    }
  else
    cpu->Rx [ARM7_CPSR] &= ~(ARM7_CPSR_N | ARM7_CPSR_Z | ARM7_CPSR_C);
  cpu->Rx [ARM7_CPSR] |= cpu->carry << 29;
  if (w == 0)
    cpu->Rx [ARM7_CPSR] |= ARM7_CPSR_Z;
  cpu->Rx [ARM7_CPSR] |= w & 0x80000000;
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Single data transfer. */
void R_SDT (struct sARM7 *cpu)
  {
  int Rn, Rd, offset;
  UINT32 adres, w = 0;

#define BIT_I (cpu->kod & (1 << 25))
#define BIT_P (cpu->kod & (1 << 24))
#define BIT_U (cpu->kod & (1 << 23))
#define BIT_B (cpu->kod & (1 << 22))
#define BIT_W (cpu->kod & (1 << 21))
#define BIT_L (cpu->kod & (1 << 20))

  if (BIT_I && (cpu->kod & (1 << 4)))
    {
    R_Und (cpu);
    return;
    }

  Rn = (cpu->kod >> 16) & 15,
  Rd = (cpu->kod >> 12) & 15;
  if (Rn != ARM7_PC)
    adres = cpu->Rx [Rn];
  else
    adres = cpu->Rx [ARM7_PC] & ~3;
  if (!BIT_L)
    if (Rd != ARM7_PC)
      w = cpu->Rx [Rd];
    else
      w = (cpu->Rx [ARM7_PC] & ~3) + 12 + PC_ADJUSTMENT;

  if (BIT_I)
    // calculate value in barrel shifter
    offset = WyliczPrzes (cpu);
  else
    // immediate in lowest 12 bits
    offset = cpu->kod & 0xfff;

  if (!BIT_U)
    offset = -offset;
  if (BIT_P)
    {
    // "pre-index"
    adres += offset;
    if (BIT_W)
      // "write-back"
      cpu->Rx [Rn] = adres;
    }
  else
    // "post-index"
    cpu->Rx [Rn] += offset;
  if (Rn == ARM7_PC)
    adres += 8 + PC_ADJUSTMENT;

  if (BIT_L)
    {
    s_cykle += 3;
    // "load"
    if (BIT_B)
      // "byte"
      cpu->Rx [Rd] = arm7_read_8 (cpu, adres);
    else
      // "word"
      cpu->Rx [Rd] = RBOD (arm7_read_32 (cpu, adres & ~3), adres & 3);
    }
  else
    {
    s_cykle += 2;
    // "store"
    if (BIT_B)
      // "byte"
      arm7_write_8 (cpu, adres, (UINT8)w);
    else
      // "word"
      arm7_write_32 (cpu, adres & ~3, w);
    }

#undef BIT_L
#undef BIT_W
#undef BIT_B
#undef BIT_U
#undef BIT_P
#undef BIT_I
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Undefined. */
void R_Und (struct sARM7 *cpu)
  {
  UINT32 sr = cpu->Rx [ARM7_CPSR];
  ARM7_SetCPSR (cpu, ARM7_CPSR_MX (sr, ARM7_CPSR_M_und) | ARM7_CPSR_I);
  cpu->Rx [ARM7_SPSR] = sr;
  cpu->Rx [ARM7_LR] = cpu->Rx [ARM7_PC] + 4;
  cpu->Rx [ARM7_PC] = 0x00000004;
  }
  //--------------------------------------------------------------------------

#define BIT_U (cpu->kod & (1 << 23))
#define BIT_S (cpu->kod & (1 << 22))
  //--------------------------------------------------------------------------
  /** Block Data Transfer. */
void R_BDT (struct sARM7 *cpu)
  {
  int Rn, usr = FALSE;
  UINT32 adres;
  ARM7_REG cpsr = 0;

#define BIT_L (cpu->kod & (1 << 20))

  // Rn can't be PC
  Rn = (cpu->kod >> 16) & 15;
  adres = cpu->Rx [Rn];

  // transfer in User mode
  if (BIT_S)
    if (!BIT_L || !(cpu->kod & (1 << ARM7_PC)))
      usr = TRUE;

  if (usr)
    {
//EMU_BLAD (BLAD_WEWNETRZNY, "BDT: user transfer");
    cpsr = cpu->Rx [ARM7_CPSR];
    ARM7_SetCPSR (cpu, ARM7_CPSR_MX (cpsr, ARM7_CPSR_M_usr));
    }

  if (BIT_L)
    // "load"
    R_LDM (cpu, Rn, adres);
  else
    // "store"
    R_STM (cpu, Rn, adres);

  if (usr)
    ARM7_SetCPSR (cpu, cpsr);

#undef BIT_L
  }
  //--------------------------------------------------------------------------

#define BIT_P (cpu->kod & (1 << 24))
#define BIT_W (cpu->kod & (1 << 21))
  //--------------------------------------------------------------------------
  /** Block load instructions. */
void R_LDM (struct sARM7 *cpu, int Rn, UINT32 adres)
  {
  int i, n, sp;

  // count registers on the list
  for (i = 0, n = 0; i < 16; i++)
    if (cpu->kod & (1 << i))
      n++;
  s_cykle += n * 2 + 1;

  n <<= 2;
  // transfer type
  sp = BIT_P;
  if (!BIT_U)
    {
    // "down"
    n = -n;
    adres += n;
    sp = !sp;
    }
  if (BIT_W)
    // "write-back"
    cpu->Rx [Rn] += n;

  // for all registers in mask
  if (sp)
    for (i = 0; i < 16; i++)
      {
      if (!(cpu->kod & (1 << i)))
        continue;
      adres += 4;
      cpu->Rx [i] = arm7_read_32 (cpu, adres);
      }
  else
    for (i = 0; i < 16; i++)
      {
      if (!(cpu->kod & (1 << i)))
        continue;
      cpu->Rx [i] = arm7_read_32 (cpu, adres);
      adres += 4;
      }

  // special case - mode change when PC is written
  if ((cpu->kod & (1 << ARM7_PC)) && BIT_S)
    ARM7_SetCPSR (cpu, cpu->Rx [ARM7_SPSR]);
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Block store instructions. */
void R_STM (struct sARM7 *cpu, int Rn, UINT32 adres)
  {
  int i, n, p, sp;

  // count registers on the list and remember the first one
  for (i = 0, n = 0, p = -1; i < 16; i++)
    if (cpu->kod & (1 << i))
      {
      n++;
      if (p < 0)
        p = i;
      }
  s_cykle += n * 2;

  n <<= 2;
  // transfer type
  sp = BIT_P;
  if (!BIT_U)
    {
    // "down"
    n = -n;
    adres += n;
    sp = !sp;
    }
  // if base register is not the first one to transfer, writeback happens here
  if (BIT_W && Rn != p)
    // "write-back"
    cpu->Rx [Rn] += n;

  // registers R0-R14
  if (sp)
    for (i = 0; i < 15; i++)
      {
      if (!(cpu->kod & (1 << i)))
        continue;
      adres += 4;
      arm7_write_32 (cpu, adres, cpu->Rx [i]);
      }
  else
    for (i = 0; i < 15; i++)
      {
      if (!(cpu->kod & (1 << i)))
        continue;
      arm7_write_32 (cpu, adres, cpu->Rx [i]);
      adres += 4;
      }

  // PC is a special case
  if (cpu->kod & (1 << ARM7_PC))
  {
    if (sp)
      {
      adres += 4;
      arm7_write_32 (cpu, adres, (cpu->Rx [ARM7_PC] & ~3) + 12 + PC_ADJUSTMENT);
      }
    else
      {
      arm7_write_32 (cpu, adres, (cpu->Rx [ARM7_PC] & ~3) + 12 + PC_ADJUSTMENT);
      adres += 4;
      }
   }

  // if base register is the first one to transfer, writeback happens here
  if (BIT_W && Rn == p)
    // "write-back"
    cpu->Rx [Rn] += n;
  }
  //--------------------------------------------------------------------------
#undef BIT_W
#undef BIT_P
#undef BIT_S
#undef BIT_U

  //--------------------------------------------------------------------------
  /** Branch/Branch with link. */
void R_B_BL (struct sARM7 *cpu)
  {
  INT32 offset;

#define BIT_L (cpu->kod & (1 << 24))

  s_cykle += 4;
  offset = (cpu->kod & 0x00ffffff) << 2;
  if (offset & 0x02000000)
    offset |= 0xfc000000;
  offset += 8 + PC_ADJUSTMENT;
  if (BIT_L)
    // "Branch with link"
    cpu->Rx [ARM7_LR] = (cpu->Rx [ARM7_PC] & ~3) + 4 + PC_ADJUSTMENT;
  // "Branch"
  cpu->Rx [ARM7_PC] += offset;

#undef BIT_L
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Group 110 opcodes. */
void R_G110 (struct sARM7 *cpu)
  {
//	logerror("ARM7: G110 / Coprocessor data transfer\n");
  }
  //--------------------------------------------------------------------------

  //--------------------------------------------------------------------------
  /** Group 111 opcodes. */
void R_G111 (struct sARM7 *cpu)
  {
  if ((cpu->kod & 0xf0000000) == 0xe0000000)
    {
/*    if (cpu->kod & (1 << 4))
	logerror("ARM7: G111 / Coprocessor register transfer\n");
    else
	logerror("ARM7: G111 / Coprocessor data operation\n"); */
    }
  else
    {
    UINT32 sr = cpu->Rx [ARM7_CPSR];
    ARM7_SetCPSR (cpu, ARM7_CPSR_MX (sr, ARM7_CPSR_M_svc) | ARM7_CPSR_I);
    cpu->Rx [ARM7_SPSR] = sr;
    cpu->Rx [ARM7_LR] = cpu->Rx [ARM7_PC];
    cpu->Rx [ARM7_PC] = 0x00000008;
    }
  }
  //--------------------------------------------------------------------------

#ifdef ARM7_THUMB
  //--------------------------------------------------------------------------
  /** Halfword and Signed Data Transfer. */
void R_HSDT ()
  {
  int Rm, Rd, Rn, offset;
  uint32_t adres, w;

#define BIT_P (cpu->kod & (1 << 24))
#define BIT_U (cpu->kod & (1 << 23))
#define BIT_W (cpu->kod & (1 << 21))
#define BIT_L (cpu->kod & (1 << 20))
#define BIT_S (cpu->kod & (1 << 6))
#define BIT_H (cpu->kod & (1 << 5))

  // Rm can't be PC
  Rn = (cpu->kod >> 16) & 15;
  Rd = (cpu->kod >> 12) & 15;
  if (Rn != ARM7_PC)
    adres = cpu->Rx [Rn];
  else
    adres = cpu->Rx [ARM7_PC] & ~3;
  if (!BIT_L)
    if (Rd != ARM7_PC)
      w = cpu->Rx [Rd];
    else
      w = (cpu->Rx [ARM7_PC] & ~3) + 12 + POPRAWKA_PC;

  if (1 << 22)
    // immediate
    offset = ((cpu->kod >> 4) & 0xf0) | (cpu->kod & 15);
  else
    {
    // register
    Rm = cpu->kod & 15;
    offset = cpu->Rx [Rm];
    }

  if (!BIT_U)
    offset = -offset;
  if (BIT_P)
    {
    // "pre-index"
    adres += offset;
    if (BIT_W)
      // "write-back"
      cpu->Rx [Rn] = adres;
    }
  else
    // "post-index"
    cpu->Rx [Rn] += offset;
  if (Rn == ARM7_PC)
    adres += 8 + POPRAWKA_PC;

  if (BIT_L)
    {
    // "load"
    s_cykle += 3;
    if (BIT_S)
      {
      if (BIT_H)
        // "signed halfword"
        cpu->Rx [Rd] = (INT32)(INT16)arm7_read_16 (adres);
      else
        // "signed byte"
        cpu->Rx [Rd] = (INT32)(INT8)arm7_read_8 (cpu, adres);
      }
    else
      // "unsigned halfword"
      cpu->Rx [Rd] = arm7_read_16 (adres);
    }
  else
    {
    // store
    s_cykle += 2;
    if (BIT_H)
      // "halfword"
      arm7_write_16 (adres, (UINT16)w);
    else
      // "byte"
      arm7_write_8 (cpu, adres, (UINT8)w);
    }

#undef BIT_H
#undef BIT_S
#undef BIT_L
#undef BIT_W
#undef BIT_U
#undef BIT_P
  }
  //--------------------------------------------------------------------------
#endif