mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
better halted state support
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1652 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
d2ac63e03e
commit
5a1e3cfcb0
2 changed files with 14 additions and 2 deletions
13
cpu-exec.c
13
cpu-exec.c
|
@ -251,6 +251,19 @@ int cpu_exec(CPUState *env1)
|
|||
TranslationBlock *tb;
|
||||
uint8_t *tc_ptr;
|
||||
|
||||
#if defined(TARGET_I386)
|
||||
/* handle exit of HALTED state */
|
||||
if (env1->hflags & HF_HALTED_MASK) {
|
||||
/* disable halt condition */
|
||||
if ((env1->interrupt_request & CPU_INTERRUPT_HARD) &&
|
||||
(env1->eflags & IF_MASK)) {
|
||||
env1->hflags &= ~HF_HALTED_MASK;
|
||||
} else {
|
||||
return EXCP_HALTED;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
cpu_single_env = env1;
|
||||
|
||||
/* first we save global registers */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue