Changeset 8365 in vbox
- Timestamp:
- Apr 24, 2008 2:21:59 PM (17 years ago)
- Location:
- trunk/src/VBox/Disassembler
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Disassembler/Disasm.cpp
r8364 r8365 191 191 // segment override prefix byte 192 192 case OP_SEG: 193 pCpu->prefix_seg = g_aOneByteMapX86[codebyte].param1 - OP_PARM_REG_SEG_START;193 pCpu->prefix_seg = paOneByteMap[codebyte].param1 - OP_PARM_REG_SEG_START; 194 194 /* Segment prefixes for CS, DS, ES and SS are ignored in long mode. */ 195 195 if ( pCpu->mode != CPUMODE_64BIT -
trunk/src/VBox/Disassembler/DisasmCore.cpp
r8364 r8365 294 294 // segment override prefix byte 295 295 case OP_SEG: 296 pCpu->prefix_seg = g_aOneByteMapX86[codebyte].param1 - OP_PARM_REG_SEG_START;296 pCpu->prefix_seg = paOneByteMap[codebyte].param1 - OP_PARM_REG_SEG_START; 297 297 /* Segment prefixes for CS, DS, ES and SS are ignored in long mode. */ 298 298 if ( pCpu->mode != CPUMODE_64BIT
Note:
See TracChangeset
for help on using the changeset viewer.