Changeset 41741 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Jun 15, 2012 1:50:13 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78549
- Location:
- trunk/src/VBox/VMM/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/CSAMInternal.h
r41739 r41741 253 253 if (pCpu->Param1.fUse & DISUSE_IMMEDIATE8_REL) 254 254 { 255 disp = (int32_t)(char)pCpu->Param1. parval;255 disp = (int32_t)(char)pCpu->Param1.uValue; 256 256 } 257 257 else 258 258 if (pCpu->Param1.fUse & DISUSE_IMMEDIATE16_REL) 259 259 { 260 disp = (int32_t)(uint16_t)pCpu->Param1. parval;260 disp = (int32_t)(uint16_t)pCpu->Param1.uValue; 261 261 } 262 262 else 263 263 if (pCpu->Param1.fUse & DISUSE_IMMEDIATE32_REL) 264 264 { 265 disp = (int32_t)pCpu->Param1. parval;265 disp = (int32_t)pCpu->Param1.uValue; 266 266 } 267 267 else -
trunk/src/VBox/VMM/include/PATMInternal.h
r41739 r41741 763 763 if (pCpu->Param1.fUse & DISUSE_IMMEDIATE8_REL) 764 764 { 765 disp = (int32_t)(char)pCpu->Param1. parval;765 disp = (int32_t)(char)pCpu->Param1.uValue; 766 766 } 767 767 else 768 768 if (pCpu->Param1.fUse & DISUSE_IMMEDIATE16_REL) 769 769 { 770 disp = (int32_t)(uint16_t)pCpu->Param1. parval;770 disp = (int32_t)(uint16_t)pCpu->Param1.uValue; 771 771 } 772 772 else 773 773 if (pCpu->Param1.fUse & DISUSE_IMMEDIATE32_REL) 774 774 { 775 disp = (int32_t)pCpu->Param1. parval;775 disp = (int32_t)pCpu->Param1.uValue; 776 776 } 777 777 else
Note:
See TracChangeset
for help on using the changeset viewer.