This commit was manufactured by cvs2svn to create tag 'FreeBSD-release/1.1'.
[unix-history] / sys / i386 / include / psl.h
index 21de5f7..dcd6dbb 100644 (file)
  * SUCH DAMAGE.
  *
  *     from: @(#)psl.h 5.2 (Berkeley) 1/18/91
  * SUCH DAMAGE.
  *
  *     from: @(#)psl.h 5.2 (Berkeley) 1/18/91
- *     $Id$
+ *     $Id: psl.h,v 1.4 1994/02/24 00:21:12 hsu Exp $
  */
 
  */
 
+#ifndef _MACHINE_PSL_H_
+#define _MACHINE_PSL_H_ 1
+
 /*
  * 386 processor status longword.
  */
 /*
  * 386 processor status longword.
  */
@@ -54,8 +57,9 @@
 #define        PSL_RF          0x00010000      /* restart flag bit */
 #define        PSL_VM          0x00020000      /* virtual 8086 mode bit */
 
 #define        PSL_RF          0x00010000      /* restart flag bit */
 #define        PSL_VM          0x00020000      /* virtual 8086 mode bit */
 
-#define        PSL_MBZ         0xfffc7fb7      /* must be zero bits */
+#define        PSL_MBZ         0xffc08028      /* must be zero bits */
 #define        PSL_MBO         0x00000002      /* must be one bits */
 
 #define        PSL_MBO         0x00000002      /* must be one bits */
 
-#define        PSL_USERSET     (PSL_IOPL)
-#define        PSL_USERCLR     (PSL_I|PSL_NT)
+#define        PSL_USERSET     (PSL_MBO | PSL_I)
+#define        PSL_USERCLR     (PSL_MBZ | PSL_NT)
+#endif /* _MACHINE_PSL_H_ */