Changeset 9676 in vbox for trunk/src/VBox
- Timestamp:
- Jun 13, 2008 9:53:15 AM (17 years ago)
- Location:
- trunk/src/VBox/Disassembler
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Disassembler/Disasm.cpp
r9675 r9676 195 195 /* Segment prefixes for CS, DS, ES and SS are ignored in long mode. */ 196 196 if ( pCpu->mode != CPUMODE_64BIT 197 || pCpu->enmPrefixSeg >= OP_PARM_REG_FS)197 || pCpu->enmPrefixSeg >= DIS_SELREG_FS) 198 198 { 199 199 pCpu->prefix |= PREFIX_SEG; -
trunk/src/VBox/Disassembler/DisasmCore.cpp
r9675 r9676 301 301 /* Segment prefixes for CS, DS, ES and SS are ignored in long mode. */ 302 302 if ( pCpu->mode != CPUMODE_64BIT 303 || pCpu->enmPrefixSeg >= OP_PARM_REG_FS)303 || pCpu->enmPrefixSeg >= DIS_SELREG_FS) 304 304 { 305 305 pCpu->prefix |= PREFIX_SEG;
Note:
See TracChangeset
for help on using the changeset viewer.