- Timestamp:
- Feb 26, 2010 2:58:34 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r26510 r26860 886 886 */ 887 887 uint32_t cbWritten; 888 int rc2 = EMInterpretInstructionCPU (pVM, pVCpu, pDis, pRegFrame, pvFault, &cbWritten);888 int rc2 = EMInterpretInstructionCPUEx(pVM, pVCpu, pDis, pRegFrame, pvFault, &cbWritten, EMCODETYPE_ALL); 889 889 if (RT_SUCCESS(rc2)) 890 890 pRegFrame->rip += pDis->opsize; … … 1023 1023 */ 1024 1024 uint32_t cb; 1025 int rc = EMInterpretInstructionCPU (pVM, pVCpu, pDis, pRegFrame, pvFault, &cb);1025 int rc = EMInterpretInstructionCPUEx(pVM, pVCpu, pDis, pRegFrame, pvFault, &cb, EMCODETYPE_ALL); 1026 1026 if (RT_SUCCESS(rc)) 1027 1027 pRegFrame->rip += pDis->opsize;
Note:
See TracChangeset
for help on using the changeset viewer.