Changeset 47753 in vbox for trunk/src/recompiler
- Timestamp:
- Aug 15, 2013 11:40:03 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/target-i386/op_helper.c
r47709 r47753 2581 2581 if ((selector & 0xfffc) == 0) { 2582 2582 /* NULL selector case: invalid TR */ 2583 #ifdef VBOX 2584 raise_exception_err(EXCP0A_TSS, 0); 2585 #else 2583 2586 env->tr.base = 0; 2584 2587 env->tr.limit = 0; 2585 2588 env->tr.flags = 0; 2586 #ifdef VBOX /** @todo can TR really be 0? If so, what're the hidden attributes? */2587 env->tr.flags = DESC_INTEL_UNUSABLE;2588 env->tr.fVBoxFlags = CPUMSELREG_FLAGS_VALID;2589 env->tr.newselector = 0;2590 2589 #endif 2591 2590 } else {
Note:
See TracChangeset
for help on using the changeset viewer.