Changeset 40144 in vbox for trunk/include/iprt
- Timestamp:
- Feb 16, 2012 10:08:14 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76295
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/x86.h
r40076 r40144 2086 2086 /** Error summary status. */ 2087 2087 #define X86_FSW_ES RT_BIT(7) 2088 /** Mask of exceptions flags, excluding the summary bit. */ 2089 #define X86_FSW_XCPT_MASK UINT16_C(0x007f) 2090 /** Mask of exceptions flags, including the summary bit. */ 2091 #define X86_FSW_XCPT_ES_MASK UINT16_C(0x00ff) 2088 2092 /** Condition code 0. */ 2089 2093 #define X86_FSW_C0 RT_BIT(8) … … 2102 2106 /** Condition code 3. */ 2103 2107 #define X86_FSW_C3 RT_BIT(14) 2108 /** Mask of exceptions flags, including the summary bit. */ 2109 #define X86_FSW_C_MASK UINT16_C(0x4700) 2104 2110 /** FPU busy. */ 2105 2111 #define X86_FSW_B RT_BIT(15)
Note:
See TracChangeset
for help on using the changeset viewer.