bugfixes, test_misc2, checkpc options
[picodrive.git] / cpu / Cyclone / OpLogic.cpp
1 #include "app.h"\r
2 \r
3 // --------------------- Opcodes 0x0100+ ---------------------\r
4 // Emit a Btst (Register) opcode 0000nnn1 ttaaaaaa\r
5 int OpBtstReg(int op)\r
6 {\r
7   int use=0;\r
8   int type=0,sea=0,tea=0;\r
9   int size=0;\r
10 \r
11   type=(op>>6)&3; // Btst/Bchg/Bclr/Bset\r
12   // Get source and target EA\r
13   sea=(op>>9)&7;\r
14   tea=op&0x003f;\r
15   if (tea<0x10) size=2; // For registers, 32-bits\r
16 \r
17   if ((tea&0x38)==0x08) return 1; // movep\r
18 \r
19   // See if we can do this opcode:\r
20   if (EaCanRead(tea,0)==0) return 1;\r
21   if (type>0)\r
22   {\r
23     if (EaCanWrite(tea)==0) return 1;\r
24   }\r
25 \r
26   use=OpBase(op,size);\r
27   use&=~0x0e00; // Use same handler for all registers\r
28   if (op!=use) { OpUse(op,use); return 0; } // Use existing handler\r
29 \r
30   OpStart(op,tea);\r
31 \r
32   if(type==1||type==3) {\r
33     Cycles=8;\r
34   } else {\r
35     Cycles=type?8:4;\r
36     if(size>=2) Cycles+=2;\r
37   }\r
38 \r
39   EaCalcReadNoSE(-1,10,sea,0,0x0e00);\r
40 \r
41   EaCalcReadNoSE((type>0)?11:-1,0,tea,size,0x003f);\r
42 \r
43   if (tea>=0x10)\r
44        ot("  and r10,r10,#7  ;@ mem - do mod 8\n");  // size always 0\r
45   else ot("  and r10,r10,#31 ;@ reg - do mod 32\n"); // size always 2\r
46   ot("\n");\r
47 \r
48   ot("  mov r1,#1\n");\r
49   ot("  tst r0,r1,lsl r10 ;@ Do arithmetic\n");\r
50   ot("  bicne r9,r9,#0x40000000\n");\r
51   ot("  orreq r9,r9,#0x40000000 ;@ Get Z flag\n");\r
52   ot("\n");\r
53 \r
54   if (type>0)\r
55   {\r
56     if (type==1) ot("  eor r1,r0,r1,lsl r10 ;@ Toggle bit\n");\r
57     if (type==2) ot("  bic r1,r0,r1,lsl r10 ;@ Clear bit\n");\r
58     if (type==3) ot("  orr r1,r0,r1,lsl r10 ;@ Set bit\n");\r
59     ot("\n");\r
60     EaWrite(11,   1,tea,size,0x003f,0,0);\r
61   }\r
62   OpEnd(tea);\r
63 \r
64   return 0;\r
65 }\r
66 \r
67 // --------------------- Opcodes 0x0800+ ---------------------\r
68 // Emit a Btst/Bchg/Bclr/Bset (Immediate) opcode 00001000 ttaaaaaa nn\r
69 int OpBtstImm(int op)\r
70 {\r
71   int type=0,sea=0,tea=0;\r
72   int use=0;\r
73   int size=0;\r
74 \r
75   type=(op>>6)&3;\r
76   // Get source and target EA\r
77   sea=   0x003c;\r
78   tea=op&0x003f;\r
79   if (tea<0x10) size=2; // For registers, 32-bits\r
80 \r
81   // See if we can do this opcode:\r
82   if (EaCanRead(tea,0)==0||EaAn(tea)||tea==0x3c) return 1;\r
83   if (type>0)\r
84   {\r
85     if (EaCanWrite(tea)==0) return 1;\r
86   }\r
87 \r
88   use=OpBase(op,size);\r
89   if (op!=use) { OpUse(op,use); return 0; } // Use existing handler\r
90 \r
91   OpStart(op,sea,tea);\r
92 \r
93   ot("\n");\r
94   EaCalcReadNoSE(-1,0,sea,0,0);\r
95   ot("  mov r10,#1\n");\r
96   ot("  bic r9,r9,#0x40000000 ;@ Blank Z flag\n");\r
97   if (tea>=0x10)\r
98        ot("  and r0,r0,#7    ;@ mem - do mod 8\n");  // size always 0\r
99   else ot("  and r0,r0,#0x1F ;@ reg - do mod 32\n"); // size always 2\r
100   ot("  mov r10,r10,lsl r0 ;@ Make bit mask\n");\r
101   ot("\n");\r
102 \r
103   if(type==1||type==3) {\r
104     Cycles=12;\r
105   } else {\r
106     Cycles=type?12:8;\r
107     if(size>=2) Cycles+=2;\r
108   }\r
109 \r
110   EaCalcReadNoSE((type>0)?11:-1,0,tea,size,0x003f);\r
111   ot("  tst r0,r10 ;@ Do arithmetic\n");\r
112   ot("  orreq r9,r9,#0x40000000 ;@ Get Z flag\n");\r
113   ot("\n");\r
114 \r
115   if (type>0)\r
116   {\r
117     if (type==1) ot("  eor r1,r0,r10 ;@ Toggle bit\n");\r
118     if (type==2) ot("  bic r1,r0,r10 ;@ Clear bit\n");\r
119     if (type==3) ot("  orr r1,r0,r10 ;@ Set bit\n");\r
120     ot("\n");\r
121     EaWrite(11,   1,tea,size,0x003f,0,0);\r
122   }\r
123 \r
124   OpEnd(sea,tea);\r
125 \r
126   return 0;\r
127 }\r
128 \r
129 // --------------------- Opcodes 0x4000+ ---------------------\r
130 int OpNeg(int op)\r
131 {\r
132   // 01000tt0 xxeeeeee (tt=negx/clr/neg/not, xx=size, eeeeee=EA)\r
133   int type=0,size=0,ea=0,use=0;\r
134 \r
135   type=(op>>9)&3;\r
136   ea  =op&0x003f;\r
137   size=(op>>6)&3; if (size>=3) return 1;\r
138 \r
139   // See if we can do this opcode:\r
140   if (EaCanRead (ea,size)==0||EaAn(ea)) return 1;\r
141   if (EaCanWrite(ea     )==0) return 1;\r
142 \r
143   use=OpBase(op,size);\r
144   if (op!=use) { OpUse(op,use); return 0; } // Use existing handler\r
145 \r
146   OpStart(op,ea);   Cycles=size<2?4:6;\r
147   if(ea >= 0x10) {\r
148     Cycles*=2;\r
149 #if CYCLONE_FOR_GENESIS\r
150     // This is same as in Starscream core, CLR uses only 6 cycles for memory EAs.\r
151     // May be this is similar case as with TAS opcode, but this time the dummy\r
152     // read is ignored somehow? Without this hack Fatal Rewind hangs even in Gens.\r
153     if(type==1&&size<2) Cycles-=2;\r
154 #endif\r
155   }\r
156 \r
157   EaCalc (10,0x003f,ea,size,0,0);\r
158 \r
159   if (type!=1) EaRead (10,0,ea,size,0x003f,0,0); // Don't need to read for 'clr' (or do we, for a dummy read?)\r
160   if (type==1) ot("\n");\r
161 \r
162   if (type==0)\r
163   {\r
164     ot(";@ Negx:\n");\r
165     GetXBit(1);\r
166     if(size!=2) ot("  mov r0,r0,asl #%i\n",size?16:24);\r
167     ot("  rscs r1,r0,#0 ;@ do arithmetic\n");\r
168     ot("  orr r3,r9,#0xb0000000 ;@ for old Z\n");\r
169     OpGetFlags(1,1,0);\r
170     if(size!=2) {\r
171       ot("  movs r1,r1,asr #%i\n",size?16:24);\r
172       ot("  orreq r9,r9,#0x40000000 ;@ possily missed Z\n");\r
173     }\r
174     ot("  andeq r9,r9,r3 ;@ fix Z\n");\r
175     ot("\n");\r
176   }\r
177 \r
178   if (type==1)\r
179   {\r
180     ot(";@ Clear:\n");\r
181     ot("  mov r1,#0\n");\r
182     ot("  mov r9,#0x40000000 ;@ NZCV=0100\n");\r
183     ot("\n");\r
184   }\r
185 \r
186   if (type==2)\r
187   {\r
188     ot(";@ Neg:\n");\r
189     if(size!=2) ot("  mov r0,r0,asl #%i\n",size?16:24);\r
190     ot("  rsbs r1,r0,#0\n");\r
191     OpGetFlags(1,1);\r
192     if(size!=2) ot("  mov r1,r1,asr #%i\n",size?16:24);\r
193     ot("\n");\r
194   }\r
195 \r
196   if (type==3)\r
197   {\r
198     ot(";@ Not:\n");\r
199     if(size!=2) {\r
200       ot("  mov r0,r0,asl #%i\n",size?16:24);\r
201       ot("  mvn r1,r0,asr #%i\n",size?16:24);\r
202     }\r
203     else\r
204       ot("  mvn r1,r0\n");\r
205     ot("  adds r1,r1,#0 ;@ Defines NZ, clears CV\n");\r
206     OpGetFlags(0,0);\r
207     ot("\n");\r
208   }\r
209 \r
210   EaWrite(10,     1,ea,size,0x003f,0,0);\r
211 \r
212   OpEnd(ea);\r
213 \r
214   return 0;\r
215 }\r
216 \r
217 // --------------------- Opcodes 0x4840+ ---------------------\r
218 // Swap, 01001000 01000nnn swap Dn\r
219 int OpSwap(int op)\r
220 {\r
221   int ea=0,use=0;\r
222 \r
223   ea=op&7;\r
224   use=op&~0x0007; // Use same opcode for all An\r
225 \r
226   if (op!=use) { OpUse(op,use); return 0; } // Use existing handler\r
227 \r
228   OpStart(op); Cycles=4;\r
229 \r
230   EaCalc (10,0x0007,ea,2,1);\r
231   EaRead (10,     0,ea,2,0x0007,1);\r
232 \r
233   ot("  mov r1,r0,ror #16\n");\r
234   ot("  adds r1,r1,#0 ;@ Defines NZ, clears CV\n");\r
235   OpGetFlags(0,0);\r
236 \r
237   EaWrite(10,     1,8,2,0x0007,1);\r
238 \r
239   OpEnd();\r
240 \r
241   return 0;\r
242 }\r
243 \r
244 // --------------------- Opcodes 0x4a00+ ---------------------\r
245 // Emit a Tst opcode, 01001010 xxeeeeee\r
246 int OpTst(int op)\r
247 {\r
248   int sea=0;\r
249   int size=0,use=0;\r
250 \r
251   sea=op&0x003f;\r
252   size=(op>>6)&3; if (size>=3) return 1;\r
253 \r
254   // See if we can do this opcode:\r
255   if (EaCanWrite(sea)==0||EaAn(sea)) return 1;\r
256 \r
257   use=OpBase(op,size);\r
258   if (op!=use) { OpUse(op,use); return 0; } // Use existing handler\r
259 \r
260   OpStart(op,sea); Cycles=4;\r
261 \r
262   EaCalc ( 0,0x003f,sea,size,1);\r
263   EaRead ( 0,     0,sea,size,0x003f,1);\r
264 \r
265   ot("  adds r0,r0,#0 ;@ Defines NZ, clears CV\n");\r
266   ot("  mrs r9,cpsr ;@ r9=flags\n");\r
267   ot("\n");\r
268 \r
269   OpEnd(sea);\r
270   return 0;\r
271 }\r
272 \r
273 // --------------------- Opcodes 0x4880+ ---------------------\r
274 // Emit an Ext opcode, 01001000 1x000nnn\r
275 int OpExt(int op)\r
276 {\r
277   int ea=0;\r
278   int size=0,use=0;\r
279   int shift=0;\r
280 \r
281   ea=op&0x0007;\r
282   size=(op>>6)&1;\r
283   shift=32-(8<<size);\r
284 \r
285   use=OpBase(op,size);\r
286   if (op!=use) { OpUse(op,use); return 0; } // Use existing handler\r
287 \r
288   OpStart(op); Cycles=4;\r
289 \r
290   EaCalc (10,0x0007,ea,size+1,0,0);\r
291   EaRead (10,     0,ea,size+1,0x0007,0,0);\r
292 \r
293   ot("  mov r0,r0,asl #%d\n",shift);\r
294   ot("  adds r0,r0,#0 ;@ Defines NZ, clears CV\n");\r
295   ot("  mrs r9,cpsr ;@ r9=flags\n");\r
296   ot("  mov r1,r0,asr #%d\n",shift);\r
297   ot("\n");\r
298 \r
299   EaWrite(10,     1,ea,size+1,0x0007,0,0);\r
300 \r
301   OpEnd();\r
302   return 0;\r
303 }\r
304 \r
305 // --------------------- Opcodes 0x50c0+ ---------------------\r
306 // Emit a Set cc opcode, 0101cccc 11eeeeee\r
307 int OpSet(int op)\r
308 {\r
309   int cc=0,ea=0;\r
310   int size=0,use=0;\r
311   char *cond[16]=\r
312   {\r
313     "al","", "hi","ls","cc","cs","ne","eq",\r
314     "vc","vs","pl","mi","ge","lt","gt","le"\r
315   };\r
316 \r
317   cc=(op>>8)&15;\r
318   ea=op&0x003f;\r
319 \r
320   if ((ea&0x38)==0x08) return 1; // dbra, not scc\r
321   \r
322   // See if we can do this opcode:\r
323   if (EaCanWrite(ea)==0) return 1;\r
324 \r
325   use=OpBase(op,size);\r
326   if (op!=use) { OpUse(op,use); return 0; } // Use existing handler\r
327 \r
328   OpStart(op,ea); Cycles=8;\r
329   if (ea<8) Cycles=4;\r
330 \r
331   if (cc)\r
332     ot("  mov r1,#0\n");\r
333 \r
334   switch (cc)\r
335   {\r
336     case 0: // T\r
337       ot("  mvn r1,#0\n");\r
338       if (ea<8) Cycles+=2;\r
339       break;\r
340     case 1: // F\r
341       break;\r
342     case 2: // hi\r
343       ot("  tst r9,#0x60000000 ;@ hi: !C && !Z\n");\r
344       ot("  mvneq r1,r1\n");\r
345       if (ea<8) ot("  subeq r5,r5,#2 ;@ Extra cycles\n");\r
346       break;\r
347     case 3: // ls\r
348       ot("  tst r9,#0x60000000 ;@ ls: C || Z\n");\r
349       ot("  mvnne r1,r1\n");\r
350       if (ea<8) ot("  subne r5,r5,#2 ;@ Extra cycles\n");\r
351       break;\r
352     default:\r
353       ot(";@ Is the condition true?\n");\r
354       ot("  msr cpsr_flg,r9 ;@ ARM flags = 68000 flags\n");\r
355       ot("  mvn%s r1,r1\n",cond[cc]);\r
356       if (ea<8) ot("  sub%s r5,r5,#2 ;@ Extra cycles\n",cond[cc]);\r
357       break;\r
358   }\r
359 \r
360   ot("\n");\r
361 \r
362   EaCalc (0,0x003f, ea,size,0,0);\r
363   EaWrite(0,     1, ea,size,0x003f,0,0);\r
364 \r
365   OpEnd(ea);\r
366   return 0;\r
367 }\r
368 \r
369 // Emit a Asr/Lsr/Roxr/Ror opcode\r
370 static int EmitAsr(int op,int type,int dir,int count,int size,int usereg)\r
371 {\r
372   char pct[8]=""; // count\r
373   int shift=32-(8<<size);\r
374 \r
375   if (count>=1) sprintf(pct,"#%d",count); // Fixed count\r
376 \r
377   if (usereg)\r
378   {\r
379     ot(";@ Use Dn for count:\n");\r
380     ot("  and r2,r8,#0x0e00\n");\r
381     ot("  ldr r2,[r7,r2,lsr #7]\n");\r
382     ot("  and r2,r2,#63\n");\r
383     ot("\n");\r
384     strcpy(pct,"r2");\r
385   }\r
386   else if (count<0)\r
387   {\r
388     ot("  mov r2,r8,lsr #9 ;@ Get 'n'\n");\r
389     ot("  and r2,r2,#7\n\n"); strcpy(pct,"r2");\r
390   }\r
391 \r
392   // Take 2*n cycles:\r
393   if (count<0) ot("  sub r5,r5,r2,asl #1 ;@ Take 2*n cycles\n\n");\r
394   else Cycles+=count<<1;\r
395 \r
396   if (type<2)\r
397   {\r
398     // Asr/Lsr\r
399     if (dir==0 && size<2)\r
400     {\r
401       ot(";@ For shift right, use loworder bits for the operation:\n");\r
402       ot("  mov r0,r0,%s #%d\n",type?"lsr":"asr",32-(8<<size));\r
403       ot("\n");\r
404     }\r
405 \r
406     if (type==0 && dir) ot("  mov r3,r0 ;@ save old value for V flag calculation\n");\r
407 \r
408     ot(";@ Shift register:\n");\r
409     if (type==0) ot("  movs r0,r0,%s %s\n",dir?"asl":"asr",pct);\r
410     if (type==1) ot("  movs r0,r0,%s %s\n",dir?"lsl":"lsr",pct);\r
411 \r
412     OpGetFlags(0,0);\r
413     if (usereg) { // store X only if count is not 0\r
414       ot("  cmp %s,#0 ;@ shifting by 0?\n",pct);\r
415       ot("  biceq r9,r9,#0x20000000 ;@ if so, clear carry\n");\r
416       ot("  strne r9,[r7,#0x4c] ;@ else Save X bit\n");\r
417     } else {\r
418       // count will never be 0 if we use immediate\r
419       ot("  str r9,[r7,#0x4c] ;@ Save X bit\n");\r
420     }\r
421     ot("\n");\r
422 \r
423     if (dir==0 && size<2)\r
424     {\r
425       ot(";@ restore after right shift:\n");\r
426       ot("  movs r0,r0,lsl #%d\n",32-(8<<size));\r
427       if (type)\r
428         ot("  orrmi r9,r9,#0x80000000 ;@ Potentially missed N flag\n");\r
429       ot("\n");\r
430     }\r
431 \r
432     if (type==0 && dir) {\r
433       ot(";@ calculate V flag (set if sign bit changes at anytime):\n");\r
434       ot("  mov r1,#0x80000000\n");\r
435       ot("  ands r3,r3,r1,asr %s\n", pct);\r
436       ot("  cmpne r3,r1,asr %s\n", pct);\r
437       ot("  biceq r9,r9,#0x10000000\n");\r
438       ot("  orrne r9,r9,#0x10000000\n");\r
439       ot("\n");\r
440     }\r
441   }\r
442 \r
443   // --------------------------------------\r
444   if (type==2)\r
445   {\r
446     int wide=8<<size;\r
447 \r
448     // Roxr\r
449     if(count == 1) {\r
450       if(dir==0) {\r
451         if(size!=2) {\r
452           ot("  orr r0,r0,r0,lsr #%i\n", size?16:24);\r
453           ot("  bic r0,r0,#0x%x\n", 1<<(32-wide));\r
454         }\r
455         GetXBit(0);\r
456         ot("  movs r0,r0,rrx\n");\r
457         OpGetFlags(0,1);\r
458       } else {\r
459         ot("  ldr r3,[r7,#0x4c]\n");\r
460         ot("  movs r0,r0,lsl #1\n");\r
461         OpGetFlags(0,1);\r
462         ot("  tst r3,#0x20000000\n");\r
463         ot("  orrne r0,r0,#0x%x\n", 1<<(32-wide));\r
464         ot("  bicne r9,r9,#0x40000000 ;@ clear Z in case it got there\n");\r
465       }\r
466       ot("  bic r9,r9,#0x10000000 ;@ make suve V is clear\n");\r
467       return 0;\r
468     }\r
469 \r
470     if (usereg)\r
471     {\r
472       if (size==2)\r
473       {\r
474         ot("  subs r2,r2,#33\n");\r
475         ot("  addmis r2,r2,#33 ;@ Now r2=0-%d\n",wide);\r
476       }\r
477       else\r
478       {\r
479         ot(";@ Reduce r2 until <0:\n");\r
480         ot("Reduce_%.4x%s\n",op,ms?"":":");\r
481         ot("  subs r2,r2,#%d\n",wide+1);\r
482         ot("  bpl Reduce_%.4x\n",op);\r
483         ot("  adds r2,r2,#%d ;@ Now r2=0-%d\n",wide+1,wide);\r
484       }\r
485       ot("  beq norotx_%.4x\n",op);\r
486       ot("\n");\r
487     }\r
488 \r
489     if (usereg||count < 0)\r
490     {\r
491       if (dir) ot("  rsb r2,r2,#%d ;@ Reverse direction\n",wide+1);\r
492     }\r
493     else\r
494     {\r
495       if (dir) ot("  mov r2,#%d ;@ Reversed\n",wide+1-count);\r
496       else     ot("  mov r2,#%d\n",count);\r
497     }\r
498 \r
499     if (shift) ot("  mov r0,r0,lsr #%d ;@ Shift down\n",shift);\r
500 \r
501     ot("\n");\r
502     ot(";@ First get X bit (middle):\n");\r
503     ot("  ldr r3,[r7,#0x4c]\n");\r
504     ot("  rsb r1,r2,#%d\n",wide);\r
505     ot("  and r3,r3,#0x20000000\n");\r
506     ot("  mov r3,r3,lsr #29\n");\r
507     ot("  mov r3,r3,lsl r1\n");\r
508 \r
509     ot(";@ Rotate bits:\n");\r
510     ot("  orr r3,r3,r0,lsr r2 ;@ Orr right part\n");\r
511     ot("  rsbs r2,r2,#%d ;@ should also clear ARM V\n",wide+1);\r
512     ot("  orrs r0,r3,r0,lsl r2 ;@ Orr left part, set flags\n");\r
513     ot("\n");\r
514 \r
515     if (shift) ot("  movs r0,r0,lsl #%d ;@ Shift up and get correct NC flags\n",shift);\r
516     OpGetFlags(0,!usereg);\r
517     if (usereg) { // store X only if count is not 0\r
518       ot("  str r9,[r7,#0x4c] ;@ if not 0, Save X bit\n");\r
519       ot("  b nozerox%.4x\n",op);\r
520       ot("norotx_%.4x%s\n",op,ms?"":":");\r
521       ot("  ldr r2,[r7,#0x4c]\n");\r
522       ot("  adds r0,r0,#0 ;@ Defines NZ, clears CV\n");\r
523       OpGetFlags(0,0);\r
524       ot("  and r2,r2,#0x20000000\n");\r
525       ot("  orr r9,r9,r2 ;@ C = old_X\n");\r
526       ot("nozerox%.4x%s\n",op,ms?"":":");\r
527     }\r
528 \r
529     ot("\n");\r
530   }\r
531 \r
532   // --------------------------------------\r
533   if (type==3)\r
534   {\r
535     // Ror\r
536     if (size<2)\r
537     {\r
538       ot(";@ Mirror value in whole 32 bits:\n");\r
539       if (size<=0) ot("  orr r0,r0,r0,lsr #8\n");\r
540       if (size<=1) ot("  orr r0,r0,r0,lsr #16\n");\r
541       ot("\n");\r
542     }\r
543 \r
544     ot(";@ Rotate register:\n");\r
545     if (!dir) ot("  adds r0,r0,#0 ;@ first clear V and C\n"); // ARM does not clear C if rot count is 0\r
546     if (count<0)\r
547     {\r
548       if (dir) ot("  rsb %s,%s,#32\n",pct,pct);\r
549       ot("  movs r0,r0,ror %s\n",pct);\r
550     }\r
551     else\r
552     {\r
553       int ror=count;\r
554       if (dir) ror=32-ror;\r
555       if (ror&31) ot("  movs r0,r0,ror #%d\n",ror);\r
556     }\r
557 \r
558     OpGetFlags(0,0);\r
559     if (dir)\r
560     {\r
561       ot("  bic r9,r9,#0x30000000 ;@ clear CV\n");\r
562       ot(";@ Get carry bit from bit 0:\n");\r
563       if (usereg)\r
564       {\r
565         ot("  cmp %s,#32 ;@ rotating by 0?\n",pct);\r
566         ot("  tstne r0,#1 ;@ no, check bit 0\n");\r
567       }\r
568       else\r
569         ot("  tst r0,#1\n");\r
570       ot("  orrne r9,r9,#0x20000000\n");\r
571     }\r
572     ot("\n");\r
573 \r
574   }\r
575   // --------------------------------------\r
576   \r
577   return 0;\r
578 }\r
579 \r
580 // Emit a Asr/Lsr/Roxr/Ror opcode - 1110cccd xxuttnnn\r
581 // (ccc=count, d=direction(r,l) xx=size extension, u=use reg for count, tt=type, nnn=register Dn)\r
582 int OpAsr(int op)\r
583 {\r
584   int ea=0,use=0;\r
585   int count=0,dir=0;\r
586   int size=0,usereg=0,type=0;\r
587 \r
588   ea=0;\r
589   count =(op>>9)&7;\r
590   dir   =(op>>8)&1;\r
591   size  =(op>>6)&3;\r
592   if (size>=3) return 1; // use OpAsrEa()\r
593   usereg=(op>>5)&1;\r
594   type  =(op>>3)&3;\r
595 \r
596   if (usereg==0) count=((count-1)&7)+1; // because ccc=000 means 8\r
597 \r
598   // Use the same opcode for target registers:\r
599   use=op&~0x0007;\r
600 \r
601   // As long as count is not 8, use the same opcode for all shift counts:\r
602   if (usereg==0 && count!=8 && !(count==1&&type==2)) { use|=0x0e00; count=-1; }\r
603   if (usereg) { use&=~0x0e00; count=-1; } // Use same opcode for all Dn\r
604 \r
605   if (op!=use) { OpUse(op,use); return 0; } // Use existing handler\r
606 \r
607   OpStart(op); Cycles=size<2?6:8;\r
608 \r
609   EaCalc(10,0x0007, ea,size,1);\r
610   EaRead(10,     0, ea,size,0x0007,1);\r
611 \r
612   EmitAsr(op,type,dir,count, size,usereg);\r
613 \r
614   EaWrite(10,    0, ea,size,0x0007,1);\r
615 \r
616   OpEnd();\r
617 \r
618   return 0;\r
619 }\r
620 \r
621 // Asr/Lsr/Roxr/Ror etc EA - 11100ttd 11eeeeee \r
622 int OpAsrEa(int op)\r
623 {\r
624   int use=0,type=0,dir=0,ea=0,size=1;\r
625 \r
626   type=(op>>9)&3;\r
627   dir =(op>>8)&1;\r
628   ea  = op&0x3f;\r
629 \r
630   if (ea<0x10) return 1;\r
631   // See if we can do this opcode:\r
632   if (EaCanRead(ea,0)==0) return 1;\r
633   if (EaCanWrite(ea)==0) return 1;\r
634 \r
635   use=OpBase(op,size);\r
636   if (op!=use) { OpUse(op,use); return 0; } // Use existing handler\r
637 \r
638   OpStart(op,ea); Cycles=6; // EmitAsr() will add 2\r
639 \r
640   EaCalc (10,0x003f,ea,size,1);\r
641   EaRead (10,     0,ea,size,0x003f,1);\r
642 \r
643   EmitAsr(op,type,dir,1,size,0);\r
644 \r
645   EaWrite(10,     0,ea,size,0x003f,1);\r
646 \r
647   OpEnd(ea);\r
648   return 0;\r
649 }\r
650 \r
651 int OpTas(int op, int gen_special)\r
652 {\r
653   int ea=0;\r
654   int use=0;\r
655 \r
656   ea=op&0x003f;\r
657 \r
658   // See if we can do this opcode:\r
659   if (EaCanWrite(ea)==0 || EaAn(ea)) return 1;\r
660 \r
661   use=OpBase(op,0);\r
662   if (op!=use) { OpUse(op,use); return 0; } // Use existing handler\r
663 \r
664   if (!gen_special) OpStart(op,ea);\r
665   else\r
666     ot("Op%.4x_%s\n", op, ms?"":":");\r
667 \r
668   Cycles=4;\r
669   if(ea>=8) Cycles+=10;\r
670 \r
671   EaCalc (10,0x003f,ea,0,1);\r
672   EaRead (10,     1,ea,0,0x003f,1);\r
673 \r
674   ot("  adds r1,r1,#0 ;@ Defines NZ, clears CV\n");\r
675   OpGetFlags(0,0);\r
676   ot("\n");\r
677 \r
678 #if CYCLONE_FOR_GENESIS\r
679   // the original Sega hardware ignores write-back phase (to memory only)\r
680   if (ea < 0x10 || gen_special) {\r
681 #endif\r
682     ot("  orr r1,r1,#0x80000000 ;@ set bit7\n");\r
683 \r
684     EaWrite(10,     1,ea,0,0x003f,1);\r
685 #if CYCLONE_FOR_GENESIS\r
686   }\r
687 #endif\r
688 \r
689   OpEnd(ea);\r
690 \r
691 #if (CYCLONE_FOR_GENESIS == 2)\r
692   if (!gen_special && ea >= 0x10) {\r
693     OpTas(op, 1);\r
694   }\r
695 #endif\r
696 \r
697   return 0;\r
698 }\r
699 \r