diff options
Diffstat (limited to 'target-sparc/helper.c')
-rw-r--r-- | target-sparc/helper.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/target-sparc/helper.c b/target-sparc/helper.c index ab96428388..12070b9246 100644 --- a/target-sparc/helper.c +++ b/target-sparc/helper.c @@ -658,13 +658,12 @@ void cpu_reset(CPUSPARCState *env) #ifdef TARGET_SPARC64 env->pstate = PS_PRIV; env->hpstate = HS_PRIV; - env->pc = 0x1fff0000020ULL; // XXX should be different for system_reset env->tsptr = &env->ts[env->tl & MAXTL_MASK]; #else - env->pc = 0; env->mmuregs[0] &= ~(MMU_E | MMU_NF); env->mmuregs[0] |= env->def->mmu_bm; #endif + env->pc = 0; env->npc = env->pc + 4; #endif } |