Changeset 41692 in vbox for trunk/src/VBox/VMM/VMMAll/EMAll.cpp
- Timestamp:
- Jun 13, 2012 7:32:54 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r41678 r41692 364 364 State.GCPtr = NIL_RTGCPTR; 365 365 } 366 return DISInstrWithReader(InstrGC, pDis->mode, emReadBytes, &State, pDis, pOpsize);366 return DISInstrWithReader(InstrGC, (DISCPUMODE)pDis->mode, emReadBytes, &State, pDis, pOpsize); 367 367 } 368 368 … … 377 377 State.GCPtr = InstrGC; 378 378 379 return DISInstrWithReader(InstrGC, pDis->mode, emReadBytes, &State, pDis, pOpsize);379 return DISInstrWithReader(InstrGC, (DISCPUMODE)pDis->mode, emReadBytes, &State, pDis, pOpsize); 380 380 } 381 381 … … 733 733 734 734 /** Convert sel:addr to a flat GC address. */ 735 DECLINLINE(RTGCPTR) emConvertToFlatAddr(PVM pVM, PCPUMCTXCORE pRegFrame, PDISCPUSTATE pDis, P OP_PARAMETERpParam, RTGCPTR pvAddr)735 DECLINLINE(RTGCPTR) emConvertToFlatAddr(PVM pVM, PCPUMCTXCORE pRegFrame, PDISCPUSTATE pDis, PDISOPPARAM pParam, RTGCPTR pvAddr) 736 736 { 737 737 DIS_SELREG enmPrefixSeg = DISDetectSegReg(pDis, pParam);
Note:
See TracChangeset
for help on using the changeset viewer.