Changeset 41678 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Jun 13, 2012 9:37:47 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78485
- Location:
- trunk/src/VBox/VMM/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/CSAMInternal.h
r41676 r41678 251 251 { 252 252 uint32_t disp; 253 if (pCpu->param1.f lags& DISUSE_IMMEDIATE8_REL)253 if (pCpu->param1.fUse & DISUSE_IMMEDIATE8_REL) 254 254 { 255 255 disp = (int32_t)(char)pCpu->param1.parval; 256 256 } 257 257 else 258 if (pCpu->param1.f lags& DISUSE_IMMEDIATE16_REL)258 if (pCpu->param1.fUse & DISUSE_IMMEDIATE16_REL) 259 259 { 260 260 disp = (int32_t)(uint16_t)pCpu->param1.parval; 261 261 } 262 262 else 263 if (pCpu->param1.f lags& DISUSE_IMMEDIATE32_REL)263 if (pCpu->param1.fUse & DISUSE_IMMEDIATE32_REL) 264 264 { 265 265 disp = (int32_t)pCpu->param1.parval; … … 267 267 else 268 268 { 269 Log(("We don't support far jumps here!! (%08X)\n", pCpu->param1.f lags));269 Log(("We don't support far jumps here!! (%08X)\n", pCpu->param1.fUse)); 270 270 return 0; 271 271 } -
trunk/src/VBox/VMM/include/PATMInternal.h
r41676 r41678 761 761 { 762 762 uint32_t disp; 763 if (pCpu->param1.f lags& DISUSE_IMMEDIATE8_REL)763 if (pCpu->param1.fUse & DISUSE_IMMEDIATE8_REL) 764 764 { 765 765 disp = (int32_t)(char)pCpu->param1.parval; 766 766 } 767 767 else 768 if (pCpu->param1.f lags& DISUSE_IMMEDIATE16_REL)768 if (pCpu->param1.fUse & DISUSE_IMMEDIATE16_REL) 769 769 { 770 770 disp = (int32_t)(uint16_t)pCpu->param1.parval; 771 771 } 772 772 else 773 if (pCpu->param1.f lags& DISUSE_IMMEDIATE32_REL)773 if (pCpu->param1.fUse & DISUSE_IMMEDIATE32_REL) 774 774 { 775 775 disp = (int32_t)pCpu->param1.parval; … … 777 777 else 778 778 { 779 Log(("We don't support far jumps here!! (%08X)\n", pCpu->param1.f lags));779 Log(("We don't support far jumps here!! (%08X)\n", pCpu->param1.fUse)); 780 780 return 0; 781 781 }
Note:
See TracChangeset
for help on using the changeset viewer.