sim-card
/
qemu
Archived
10
0
Fork 0

Set FD bit in SR to emulate kernel behaviour, by Magnus Damm.

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2999 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
ths 2007-06-22 10:12:54 +00:00
parent d10927f86b
commit 4c909d14c2
1 changed files with 1 additions and 1 deletions

View 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