Changeset 7134 in vbox for trunk/include/VBox
- Timestamp:
- Feb 25, 2008 6:20:35 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 28395
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/dis.h
r7015 r7134 29 29 #include <VBox/cdefs.h> 30 30 #include <VBox/types.h> 31 #include <VBox/cpum.h>32 31 #include <VBox/disopcode.h> 33 32 … … 72 71 /** @} */ 73 72 74 /** 64 bits prefix byte flags 73 /** 64 bits prefix byte flags 75 74 * @{ 76 75 */ … … 119 118 #define OPTYPE_ONLY_64 RT_BIT(20) /**< Only valid in 64 bits mode */ 120 119 #define OPTYPE_DEFAULT_64_OP_SIZE RT_BIT(21) /**< Default 64 bits operand size */ 121 #define OPTYPE_FORCED_64_OP_SIZE RT_BIT(22) /**< Forced 64 bits operand size; regardless of prefix bytes */ 120 #define OPTYPE_FORCED_64_OP_SIZE RT_BIT(22) /**< Forced 64 bits operand size; regardless of prefix bytes */ 122 121 #define OPTYPE_ALL (0xffffffff) 123 122 … … 553 552 DISDECL(int) DISFetchReg32(PCPUMCTXCORE pCtx, uint32_t reg32, uint32_t *pVal); 554 553 DISDECL(int) DISFetchRegSeg(PCPUMCTXCORE pCtx, uint32_t sel, RTSEL *pVal); 555 DISDECL(int) DISFetchRegSegEx(PCPUMCTXCORE pCtx, uint32_t sel, RTSEL *pVal, CPUMSELREGHID **ppSelHidReg);554 DISDECL(int) DISFetchRegSegEx(PCPUMCTXCORE pCtx, uint32_t sel, RTSEL *pVal, PCPUMSELREGHID *ppSelHidReg); 556 555 DISDECL(int) DISWriteReg8(PCPUMCTXCORE pRegFrame, uint32_t reg8, uint8_t val8); 557 556 DISDECL(int) DISWriteReg16(PCPUMCTXCORE pRegFrame, uint32_t reg32, uint16_t val16);
Note:
See TracChangeset
for help on using the changeset viewer.