Changeset 9700 in vbox
- Timestamp:
- Jun 16, 2008 8:49:47 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 32050
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/DBGFDisas.cpp
r9675 r9700 102 102 uint32_t cbInstr; 103 103 int rc = DISCoreOneEx(GCPtr, 104 pSelInfo->Raw.Gen.u1DefBig 105 ? enmMode >= PGMMODE_AMD64 && pSelInfo->Raw.Gen.u1Long 104 enmMode >= PGMMODE_AMD64 && pSelInfo->Raw.Gen.u1Long 106 105 ? CPUMODE_64BIT 107 : CPUMODE_32BIT 106 : pSelInfo->Raw.Gen.u1DefBig 107 ? CPUMODE_32BIT 108 108 : CPUMODE_16BIT, 109 109 dbgfR3DisasInstrRead, … … 308 308 Sel = pCtxCore->cs; 309 309 pHiddenSel = (CPUMSELREGHID *)&pCtxCore->csHid; 310 GCPtr = pCtxCore-> eip;310 GCPtr = pCtxCore->rip; 311 311 } 312 312 … … 334 334 SelInfo.Raw.Gen.u1Granularity = pHiddenSel->Attr.n.u1Granularity;; 335 335 SelInfo.Raw.Gen.u1DefBig = pHiddenSel->Attr.n.u1DefBig; 336 SelInfo.Raw.Gen.u1Long = pHiddenSel->Attr.n.u1Long; 336 337 SelInfo.Raw.Gen.u1DescType = pHiddenSel->Attr.n.u1DescType; 337 338 SelInfo.Raw.Gen.u4Type = pHiddenSel->Attr.n.u4Type;
Note:
See TracChangeset
for help on using the changeset viewer.