mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
Fix saving and loading of trap state
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4883 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
2cade6a3f6
commit
e6bf7d70b5
2 changed files with 12 additions and 12 deletions
|
@ -2680,26 +2680,26 @@ void helper_wrpstate(target_ulong new_state)
|
|||
|
||||
void helper_done(void)
|
||||
{
|
||||
env->tl--;
|
||||
env->tsptr = &env->ts[env->tl];
|
||||
env->pc = env->tsptr->tpc;
|
||||
env->npc = env->tsptr->tnpc + 4;
|
||||
PUT_CCR(env, env->tsptr->tstate >> 32);
|
||||
env->asi = (env->tsptr->tstate >> 24) & 0xff;
|
||||
change_pstate((env->tsptr->tstate >> 8) & 0xf3f);
|
||||
PUT_CWP64(env, env->tsptr->tstate & 0xff);
|
||||
env->tl--;
|
||||
env->tsptr = &env->ts[env->tl];
|
||||
}
|
||||
|
||||
void helper_retry(void)
|
||||
{
|
||||
env->tl--;
|
||||
env->tsptr = &env->ts[env->tl];
|
||||
env->pc = env->tsptr->tpc;
|
||||
env->npc = env->tsptr->tnpc;
|
||||
PUT_CCR(env, env->tsptr->tstate >> 32);
|
||||
env->asi = (env->tsptr->tstate >> 24) & 0xff;
|
||||
change_pstate((env->tsptr->tstate >> 8) & 0xf3f);
|
||||
PUT_CWP64(env, env->tsptr->tstate & 0xff);
|
||||
env->tl--;
|
||||
env->tsptr = &env->ts[env->tl];
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue