Changeset 69184 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Oct 24, 2017 5:43:16 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r69161 r69184 4551 4551 const SVMIOIOTYPE enmIoType = (SVMIOIOTYPE)pIoExitInfo->n.u1Type; 4552 4552 const uint8_t cbReg = (pIoExitInfo->u >> SVM_IOIO_OP_SIZE_SHIFT) & 7; 4553 const uint8_t cAddrSizeBits = ( pIoExitInfo->u >> SVM_IOIO_ADDR_SIZE_SHIFT) << 4;4553 const uint8_t cAddrSizeBits = ((pIoExitInfo->u >> SVM_IOIO_ADDR_SIZE_SHIFT) & 7) << 4; 4554 4554 const uint8_t iEffSeg = pIoExitInfo->n.u3SEG; 4555 4555 const bool fRep = pIoExitInfo->n.u1REP;
Note:
See TracChangeset
for help on using the changeset viewer.