Changeset 15634 in vbox
- Timestamp:
- Dec 17, 2008 4:38:42 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r15633 r15634 2231 2231 { 2232 2232 case PARMTYPE_IMMEDIATE: 2233 if( !(param1.flags & PARAM_VAL16))2233 if(param1.size != sizeof(uint16_t)) 2234 2234 return VERR_EM_INTERPRETER; 2235 2235 rc = DISWriteReg16(pRegFrame, pCpu->param1.base.reg_gen, cr0); … … 2241 2241 2242 2242 /* Actually forced to 16 bits regardless of the operand size. */ 2243 if( !(param1.flags & PARAM_VAL16))2243 if(param1.size != sizeof(uint16_t)) 2244 2244 return VERR_EM_INTERPRETER; 2245 2245
Note:
See TracChangeset
for help on using the changeset viewer.