Subversion Repositories Kolibri OS

Rev

Rev 164 | Rev 170 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 164 Rev 168
Line 84... Line 84...
84
CAPS_ALTMOVCR8 equ    74 ;
84
CAPS_ALTMOVCR8 equ    74 ;
85
 
85
 
86
 
86
 
Line -... Line 87...
-
 
87
CR0_PE         equ    0x00000001   ;protected mode
-
 
88
CR0_MP         equ    0x00000002   ;monitor fpu
-
 
89
CR0_EM         equ    0x00000004   ;fpu emulation
-
 
90
CR0_TS         equ    0x00000008   ;task switch
-
 
91
CR0_ET         equ    0x00000010   ;extension type hardcoded to 1
-
 
92
CR0_NE         equ    0x00000020   ;numeric error
-
 
93
CR0_WP         equ    0x00010000   ;write protect
-
 
94
CR0_AM         equ    0x00040000   ;alignment check
-
 
95
CR0_NW         equ    0x20000000   ;not write-through
-
 
96
CR0_CD         equ    0x40000000   ;cache disable
-
 
97
CR0_PG         equ    0x80000000   ;paging
-
 
98
 
-
 
99
 
87
CR4_VME        equ    0x0001
100
CR4_VME        equ    0x0001
88
CR4_PVI        equ    0x0002
101
CR4_PVI        equ    0x0002
89
CR4_TSD        equ    0x0004
102
CR4_TSD        equ    0x0004
90
CR4_DE         equ    0x0008
103
CR4_DE         equ    0x0008
91
CR4_PSE        equ    0x0010
104
CR4_PSE        equ    0x0010
Line 96... Line 109...
96
CR4_OSFXSR     equ    0x0200
109
CR4_OSFXSR     equ    0x0200
97
CR4_OSXMMEXPT  equ    0x0400
110
CR4_OSXMMEXPT  equ    0x0400
98
 
111
 
99
 
112
SSE_IE         equ    0x0001
Line -... Line 113...
-
 
113
SSE_DE         equ    0x0002
-
 
114
SSE_ZE         equ    0x0004
-
 
115
SSE_OE         equ    0x0008
-
 
116
SSE_UE         equ    0x0010
-
 
117
SSE_PE         equ    0x0020
-
 
118
SSE_DAZ        equ    0x0040
-
 
119
SSE_IM         equ    0x0080
-
 
120
SSE_DM         equ    0x0100
-
 
121
SSE_ZM         equ    0x0200
-
 
122
SSE_OM         equ    0x0400
-
 
123
SSE_UM         equ    0x0800
-
 
124
SSE_PM         equ    0x1000
-
 
125
SSE_FZ         equ    0x8000
-
 
126
 
Line -... Line 127...
-
 
127
SSE_INIT equ (SSE_IM+SSE_DM+SSE_ZM+SSE_OM+SSE_UM+SSE_PM)
Line 100... Line 128...
100
 
128
 
Line 101... Line 129...
101
OS_BASE             equ 0;  0x80400000
129
OS_BASE             equ 0;  0x80400000