Changeset 59408 in vbox for trunk/src/VBox/Disassembler
- Timestamp:
- Jan 19, 2016 1:19:02 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Disassembler/DisasmCore.cpp
r59265 r59408 2532 2532 uint8_t implOpcode = (byte1 & 0x1f); 2533 2533 2534 // REX.RXB -- XXX check this! 2534 // REX.RXB 2535 /** @todo Check this! was weird: ~(byte1 & 0xe0) */ 2535 2536 if (pDis->uCpuMode == DISCPUMODE_64BIT && !(byte1 & 0xe0)) 2536 2537 pDis->fRexPrefix |= (byte1 >> 5) ^ 7;
Note:
See TracChangeset
for help on using the changeset viewer.