Changeset 41788 in vbox
- Timestamp:
- Jun 16, 2012 8:11:35 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/dis.h
r41786 r41788 595 595 /** The instruction size. */ 596 596 uint8_t cbInstr; 597 /** The number of valid bytes in abInstr. 598 * @todo Implement caching and read-ahead tomorrow. */ 597 /** The number of valid bytes in abInstr. */ 599 598 uint8_t cbCachedInstr; 600 599 /** Unused byte. */ -
trunk/src/VBox/Disassembler/DisasmCore.cpp
r41787 r41788 2625 2625 2626 2626 /* first opcode byte. */ 2627 pCpu->bOpCode = codebyte; 2627 pCpu->bOpCode = codebyte; 2628 pCpu->cbPrefix = (uint8_t)offInstr - 1; 2628 2629 offInstr += disParseInstruction(offInstr, &paOneByteMap[pCpu->bOpCode], pCpu); 2629 2630 break;
Note:
See TracChangeset
for help on using the changeset viewer.