Changeset 56258 in vbox
- Timestamp:
- Jun 5, 2015 11:50:26 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 100830
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAll.cpp
r56061 r56258 4901 4901 pCtx->eflags.Bits.u1RF = 0; 4902 4902 4903 /* NB: Must be kept in sync with HM (xxxAdvanceGuestRip). */ 4903 4904 switch (pIemCpu->enmCpuMode) 4904 4905 { 4906 /** @todo investigate if EIP or RIP is really incremented. */ 4905 4907 case IEMMODE_16BIT: 4906 Assert(pCtx->rip <= UINT16_MAX);4907 pCtx->eip += cbInstr;4908 pCtx->eip &= UINT32_C(0xffff);4909 break;4910 4911 4908 case IEMMODE_32BIT: 4912 4909 pCtx->eip += cbInstr;
Note:
See TracChangeset
for help on using the changeset viewer.