]> git.saurik.com Git - apple/xnu.git/blobdiff - osfmk/i386/eflags.h
xnu-792.13.8.tar.gz
[apple/xnu.git] / osfmk / i386 / eflags.h
index 6d7fb24412dc9d8e8666dc60d362527c18874e0e..2d0894b4ed30a89f141febfab44ac175bc13df5c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2000-2005 Apple Computer, Inc. All rights reserved.
  *
  * @APPLE_LICENSE_OSREFERENCE_HEADER_START@
  * 
@@ -65,7 +65,7 @@
  *     i386 flags register
  */
 
-#ifndef EFL_CF         /* FIXME - this is pulled from mach/i386/eflags.h */
+#ifndef EFL_CF
 #define        EFL_CF          0x00000001              /* carry */
 #define        EFL_PF          0x00000004              /* parity of low 8 bits */
 #define        EFL_AF          0x00000010              /* carry out of bit 3 */
@@ -87,6 +87,9 @@
 #define EFL_ID         0x00200000              /* cpuID instruction */
 #endif
 
+#define EFL_CLR                0xfff88028
+#define EFL_SET                0x00000002
+
 #define        EFL_USER_SET    (EFL_IF)
 #define        EFL_USER_CLEAR  (EFL_IOPL|EFL_NT|EFL_RF)