Changeset 41675 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Jun 12, 2012 8:27:37 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78482
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r41645 r41675 2972 2972 */ 2973 2973 DISCPUMODE enmMode = SELMGetCpuModeFromSelector(pVCpu, pRegFrame->eflags, pRegFrame->cs, &pRegFrame->csHid); 2974 if (enmMode != CPUMODE_16BIT)2974 if (enmMode != DISCPUMODE_16BIT) 2975 2975 { 2976 2976 RTGCPTR pbCode; -
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r41645 r41675 3585 3585 X86EFLAGS eflags; 3586 3586 3587 if (pDis->prefix & PREFIX_OPSIZE)3587 if (pDis->prefix & DISPREFIX_OPSIZE) 3588 3588 { 3589 3589 cbParm = 4; … … 3627 3627 X86EFLAGS eflags; 3628 3628 3629 if (pDis->prefix & PREFIX_OPSIZE)3629 if (pDis->prefix & DISPREFIX_OPSIZE) 3630 3630 { 3631 3631 cbParm = 4; … … 3669 3669 uint16_t aIretFrame[3]; 3670 3670 3671 if (pDis->prefix & ( PREFIX_OPSIZE |PREFIX_ADDRSIZE))3671 if (pDis->prefix & (DISPREFIX_OPSIZE | DISPREFIX_ADDRSIZE)) 3672 3672 { 3673 3673 rc = VERR_EM_INTERPRETER;
Note:
See TracChangeset
for help on using the changeset viewer.