diff options
Diffstat (limited to 'target-ppc/helper.c')
-rw-r--r-- | target-ppc/helper.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/target-ppc/helper.c b/target-ppc/helper.c index 438cad42a6..daee4c7a18 100644 --- a/target-ppc/helper.c +++ b/target-ppc/helper.c @@ -2789,7 +2789,11 @@ void cpu_ppc_reset (void *opaque) msr_fp = 1; /* Allow floating point exceptions */ msr_pr = 1; #else +#if defined(TARGET_PPC64) + env->nip = 0x00000100; +#else env->nip = 0xFFFFFFFC; +#endif ppc_tlb_invalidate_all(env); #endif do_compute_hflags(env); @@ -2810,7 +2814,6 @@ CPUPPCState *cpu_ppc_init (void) if (!env) return NULL; cpu_exec_init(env); - cpu_ppc_reset(env); return env; } |