summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2003-12-02 21:59:21 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2003-12-02 21:59:21 +0000
commit5e809a80955cda9c4053fac02411edff733b4840 (patch)
treedc641f669be0ba5c5956b6e7664c5a5f83d79d57
parent791c2261d6f1d9fbb1c6d1194129828009f9025e (diff)
downloadqemu-5e809a80955cda9c4053fac02411edff733b4840.tar.gz
dump irq inhibit flag as it is a part of the cpu state
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@480 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r--target-i386/helper2.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/target-i386/helper2.c b/target-i386/helper2.c
index 47c18fbaad..7d74e2afa1 100644
--- a/target-i386/helper2.c
+++ b/target-i386/helper2.c
@@ -112,7 +112,7 @@ void cpu_x86_dump_state(CPUX86State *env, FILE *f, int flags)
eflags = env->eflags;
fprintf(f, "EAX=%08x EBX=%08x ECX=%08x EDX=%08x\n"
"ESI=%08x EDI=%08x EBP=%08x ESP=%08x\n"
- "EIP=%08x EFL=%08x [%c%c%c%c%c%c%c] CPL=%d\n",
+ "EIP=%08x EFL=%08x [%c%c%c%c%c%c%c] CPL=%d II=%d\n",
env->regs[R_EAX], env->regs[R_EBX], env->regs[R_ECX], env->regs[R_EDX],
env->regs[R_ESI], env->regs[R_EDI], env->regs[R_EBP], env->regs[R_ESP],
env->eip, eflags,
@@ -123,7 +123,8 @@ void cpu_x86_dump_state(CPUX86State *env, FILE *f, int flags)
eflags & CC_A ? 'A' : '-',
eflags & CC_P ? 'P' : '-',
eflags & CC_C ? 'C' : '-',
- env->hflags & HF_CPL_MASK);
+ env->hflags & HF_CPL_MASK,
+ (env->hflags >> HF_INHIBIT_IRQ_SHIFT) & 1);
for(i = 0; i < 6; i++) {
SegmentCache *sc = &env->segs[i];
fprintf(f, "%s =%04x %08x %08x %08x\n",