summaryrefslogtreecommitdiff
path: root/sys/arch/hppa/include/psl.h
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1998-08-29 01:30:00 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1998-08-29 01:30:00 +0000
commitc981dc12c99807e9a2797cf7cb291d118b4146f1 (patch)
tree42b3862c03234757e5232037e02b49f3839a871b /sys/arch/hppa/include/psl.h
parentac7088afdc14bbc631a0a19d138de902da7debe9 (diff)
fix {KERNEL,RESET}_PSW
Diffstat (limited to 'sys/arch/hppa/include/psl.h')
-rw-r--r--sys/arch/hppa/include/psl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hppa/include/psl.h b/sys/arch/hppa/include/psl.h
index 97735a4332b..f746323d8c4 100644
--- a/sys/arch/hppa/include/psl.h
+++ b/sys/arch/hppa/include/psl.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: psl.h,v 1.1 1998/07/07 21:32:44 mickey Exp $ */
+/* $OpenBSD: psl.h,v 1.2 1998/08/29 01:29:59 mickey Exp $ */
/*
* (c) Copyright 1987 HEWLETT-PACKARD COMPANY
@@ -78,8 +78,8 @@
/*
* Kernel PSW Masks
*/
-#define RESET_PSW (PSW_R | PSW_Q | PSW_P | PSW_D)
-#define KERNEL_PSW (PSW_R | PSW_Q | PSW_P | PSW_D | PSW_I)
+#define RESET_PSW (PSW_R | PSW_Q | PSW_P | PSW_D | PSW_I)
+#define KERNEL_PSW (PSW_C | PSW_Q | PSW_P | PSW_D)
#define SYSTEM_MASK (PSW_R | PSW_Q | PSW_P | PSW_D | PSW_I)
#define GLOBAL_VAR_MASK (PSW_H | PSW_L | PSW_C | PSW_M)
#define PER_INST_MASK (PSW_X | PSW_T | PSW_N | PSW_B | PSW_V | PSW_CB | SYSTEM_MASK)