OSDN Git Service

Set FD bit in SR to emulate kernel behaviour, by Magnus Damm.
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Fri, 22 Jun 2007 10:12:54 +0000 (10:12 +0000)
committerths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Fri, 22 Jun 2007 10:12:54 +0000 (10:12 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2999 c046a42c-6fe2-441c-8c8c-71466251a162

target-sh4/translate.c

index c70288e..40d7266 100644 (file)
@@ -125,7 +125,7 @@ void cpu_dump_state(CPUState * env, FILE * f,
 void cpu_sh4_reset(CPUSH4State * env)
 {
 #if defined(CONFIG_USER_ONLY)
-    env->sr = 0x00000000;
+    env->sr = SR_FD;            /* FD - kernel does lazy fpu context switch */
 #else
     env->sr = 0x700000F0;      /* MD, RB, BL, I3-I0 */
 #endif