Changeset 60667 in vbox
- Timestamp:
- Apr 22, 2016 11:50:12 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 106835
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/x86.h
r60665 r60667 739 739 740 740 /** @name CR0 741 * @remarks The 286 (MSW), 386 and 486 ignores attempts at setting 742 * reserved flags. 741 743 * @{ */ 742 744 /** Bit 0 - PE - Protection Enabled */ … … 752 754 #define X86_CR0_TS RT_BIT_32(3) 753 755 #define X86_CR0_TASK_SWITCH RT_BIT_32(3) 754 /** Bit 4 - ET - Extension flag. ( 'hardcoded' to 1) */756 /** Bit 4 - ET - Extension flag. (386, 'hardcoded' to 1 on 486+) */ 755 757 #define X86_CR0_ET RT_BIT_32(4) 756 758 #define X86_CR0_EXTENSION_TYPE RT_BIT_32(4) 757 /** Bit 5 - NE - Numeric error . */759 /** Bit 5 - NE - Numeric error (486+). */ 758 760 #define X86_CR0_NE RT_BIT_32(5) 759 761 #define X86_CR0_NUMERIC_ERROR RT_BIT_32(5) 760 /** Bit 16 - WP - Write Protect . */762 /** Bit 16 - WP - Write Protect (486+). */ 761 763 #define X86_CR0_WP RT_BIT_32(16) 762 764 #define X86_CR0_WRITE_PROTECT RT_BIT_32(16) 763 /** Bit 18 - AM - Alignment Mask . */765 /** Bit 18 - AM - Alignment Mask (486+). */ 764 766 #define X86_CR0_AM RT_BIT_32(18) 765 767 #define X86_CR0_ALIGMENT_MASK RT_BIT_32(18) 766 /** Bit 29 - NW - Not Write-though . */768 /** Bit 29 - NW - Not Write-though (486+). */ 767 769 #define X86_CR0_NW RT_BIT_32(29) 768 770 #define X86_CR0_NOT_WRITE_THROUGH RT_BIT_32(29) 769 /** Bit 30 - WP - Cache Disable . */771 /** Bit 30 - WP - Cache Disable (486+). */ 770 772 #define X86_CR0_CD RT_BIT_32(30) 771 773 #define X86_CR0_CACHE_DISABLE RT_BIT_32(30)
Note:
See TracChangeset
for help on using the changeset viewer.