Il 27/05/2014 22:30, Bandan Das ha scritto:
@@ -996,15 +995,14 @@ static inline void cpu_x86_load_seg_cache(CPUX86State *env, #endif { /* legacy / compatibility case */ - if (!(env->cr[0] & CR0_PE_MASK)) - cpl = 0; - else if (env->eflags & VM_MASK) - cpl = 3;Trying to understand this thing, !(env->cr[0] & CR0_PE_MASK) is real mode, and what is env->eflags & VM_MASK ?
It's vm86 mode. Paolo
