mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 12:57:52 +00:00
arm: removed unnecessary code when calling SVC from skyeye
This commit is contained in:
parent
6fc62f8c93
commit
55a540eb02
1 changed files with 0 additions and 16 deletions
|
@ -4533,23 +4533,7 @@ ARMul_Emulate26 (ARMul_State * state)
|
||||||
case 0xfd:
|
case 0xfd:
|
||||||
case 0xfe:
|
case 0xfe:
|
||||||
case 0xff:
|
case 0xff:
|
||||||
if (instr == ARMul_ABORTWORD
|
|
||||||
&& state->AbortAddr == pc) {
|
|
||||||
/* A prefetch abort. */
|
|
||||||
XScale_set_fsr_far (state,
|
|
||||||
ARMul_CP15_R5_MMU_EXCPT,
|
|
||||||
pc);
|
|
||||||
ARMul_Abort (state,
|
|
||||||
ARMul_PrefetchAbortV);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
//sky_pref_t* pref = get_skyeye_pref();
|
|
||||||
//if(pref->user_mode_sim){
|
|
||||||
// ARMul_OSHandleSWI (state, BITS (0, 23));
|
|
||||||
// break;
|
|
||||||
//}
|
|
||||||
HLE::CallSVC(instr);
|
HLE::CallSVC(instr);
|
||||||
ARMul_Abort (state, ARMul_SWIV);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue