Changeset 41676 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Jun 12, 2012 8:53:40 PM (13 years ago)
- Location:
- trunk/src/VBox/VMM/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/CSAMInternal.h
r35348 r41676 251 251 { 252 252 uint32_t disp; 253 if (pCpu->param1.flags & USE_IMMEDIATE8_REL)253 if (pCpu->param1.flags & DISUSE_IMMEDIATE8_REL) 254 254 { 255 255 disp = (int32_t)(char)pCpu->param1.parval; 256 256 } 257 257 else 258 if (pCpu->param1.flags & USE_IMMEDIATE16_REL)258 if (pCpu->param1.flags & DISUSE_IMMEDIATE16_REL) 259 259 { 260 260 disp = (int32_t)(uint16_t)pCpu->param1.parval; 261 261 } 262 262 else 263 if (pCpu->param1.flags & USE_IMMEDIATE32_REL)263 if (pCpu->param1.flags & DISUSE_IMMEDIATE32_REL) 264 264 { 265 265 disp = (int32_t)pCpu->param1.parval; -
trunk/src/VBox/VMM/include/PATMInternal.h
r41671 r41676 761 761 { 762 762 uint32_t disp; 763 if (pCpu->param1.flags & USE_IMMEDIATE8_REL)763 if (pCpu->param1.flags & DISUSE_IMMEDIATE8_REL) 764 764 { 765 765 disp = (int32_t)(char)pCpu->param1.parval; 766 766 } 767 767 else 768 if (pCpu->param1.flags & USE_IMMEDIATE16_REL)768 if (pCpu->param1.flags & DISUSE_IMMEDIATE16_REL) 769 769 { 770 770 disp = (int32_t)(uint16_t)pCpu->param1.parval; 771 771 } 772 772 else 773 if (pCpu->param1.flags & USE_IMMEDIATE32_REL)773 if (pCpu->param1.flags & DISUSE_IMMEDIATE32_REL) 774 774 { 775 775 disp = (int32_t)pCpu->param1.parval;
Note:
See TracChangeset
for help on using the changeset viewer.