Changeset 41733 in vbox for trunk/include/VBox/dis.h
- Timestamp:
- Jun 15, 2012 12:11:28 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78541
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/dis.h
r41732 r41733 48 48 } DISCPUMODE; 49 49 50 /** @name Prefix byte flags (DISCPUSTATE:: prefix_rex).50 /** @name Prefix byte flags (DISCPUSTATE::fRexPrefix). 51 51 * @{ 52 52 */ … … 68 68 /** @} */ 69 69 70 /** @name 64 bits prefix byte flags (DISCPUSTATE:: prefix_rex).70 /** @name 64 bits prefix byte flags (DISCPUSTATE::fRexPrefix). 71 71 * Requires VBox/disopcode.h. 72 72 * @{ … … 537 537 /* off: 0x070 (112) */ 538 538 /** REX prefix value (64 bits only). */ 539 uint8_t prefix_rex;539 uint8_t fRexPrefix; 540 540 /** Segment prefix value (DISSELREG). */ 541 541 uint8_t idxSegPrefix; 542 542 /** Last prefix byte (for SSE2 extension tables). */ 543 uint8_t lastprefix;543 uint8_t bLastPrefix; 544 544 /** First opcode byte of instruction. */ 545 uint8_t opcode;545 uint8_t bOpCode; 546 546 /* off: 0x074 (116) */ 547 547 /** The size of the prefix bytes. */
Note:
See TracChangeset
for help on using the changeset viewer.