diff options
-rw-r--r-- | cpu-exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu-exec.c b/cpu-exec.c index 1edfa19a00..835ca42478 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -354,7 +354,7 @@ int cpu_exec(CPUState *env1) cs_base = env->npc; pc = env->pc; #elif defined(TARGET_PPC) - flags = 0; + flags = (msr_pr << MSR_PR) | (msr_fp << MSR_FP) | (msr_se << MSR_SE); cs_base = 0; pc = env->nip; #else |