]> git.saurik.com Git - apple/xnu.git/blobdiff - osfmk/i386/eflags.h
xnu-792.22.5.tar.gz
[apple/xnu.git] / osfmk / i386 / eflags.h
index d2aaefbbf928d7528937b4402ebaac6272ad5cee..9dc64783e081cbb3aaf9022e18ac0c55b6729b73 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_OSREFERENCE_LICENSE_HEADER_START@
  * 
@@ -63,7 +63,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 */
@@ -85,6 +85,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)