From: bellard Date: Sun, 24 Jul 2005 14:14:53 +0000 (+0000) Subject: temporary work around for 16 bit code in kqemu X-Git-Tag: release_0_7_1~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=09d459a1db9b19d1ff66e98620f1ea16aba379de;p=thirdparty%2Fqemu.git temporary work around for 16 bit code in kqemu git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1527 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/exec-all.h b/exec-all.h index b7c0ad8601b..5e809b0b785 100644 --- a/exec-all.h +++ b/exec-all.h @@ -615,7 +615,8 @@ static inline int kqemu_is_ok(CPUState *env) (env->eflags & IOPL_MASK) != IOPL_MASK && (env->cr[0] & CR0_PE_MASK) && (env->eflags & IF_MASK) && - !(env->eflags & VM_MASK)); + !(env->eflags & VM_MASK) && + (env->ldt.limit == 0 || env->ldt.limit == 0x27)); } #endif