hlt instruction fix

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@973 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2004-06-25 14:58:58 +00:00
parent d187d4b218
commit acf5feac80

View File

@ -433,6 +433,7 @@ void OPPROTO op_jmp_im(void)
void OPPROTO op_hlt(void)
{
env->hflags &= ~HF_INHIBIT_IRQ_MASK; /* needed if sti is just before */
env->exception_index = EXCP_HLT;
cpu_loop_exit();
}