summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k/include/cpus.h
diff options
context:
space:
mode:
authorSteve Murphree <smurph@cvs.openbsd.org>1999-09-27 20:46:20 +0000
committerSteve Murphree <smurph@cvs.openbsd.org>1999-09-27 20:46:20 +0000
commit693af0532b09de7c3d3f56c40ddcc1f5f8cf83a4 (patch)
tree0eb53756dfd4505bb539bcdd03ed15a525f67f37 /sys/arch/mvme88k/include/cpus.h
parent4fb4310cdabdf5a1054be0bd3f5a793c5198bbc6 (diff)
Adding support for MVME188 and MVME197
Diffstat (limited to 'sys/arch/mvme88k/include/cpus.h')
-rw-r--r--sys/arch/mvme88k/include/cpus.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/sys/arch/mvme88k/include/cpus.h b/sys/arch/mvme88k/include/cpus.h
index 7724aaff5e6..d41e7211469 100644
--- a/sys/arch/mvme88k/include/cpus.h
+++ b/sys/arch/mvme88k/include/cpus.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpus.h,v 1.4 1999/02/09 06:36:26 smurph Exp $ */
+/* $OpenBSD: cpus.h,v 1.5 1999/09/27 20:46:17 smurph Exp $ */
/*
* Mach Operating System
* Copyright (c) 1993-1992 Carnegie Mellon University
@@ -40,26 +40,26 @@
*/
#ifndef ASSEMBLER
union cpupid {
- unsigned cpupid;
- struct {
- unsigned
- /*empty*/:16,
- arc:8,
- version:7,
- master:1;
- } m88100;
- struct {
- unsigned
- id:8,
- type:3,
- version:5,
- /*empty*/:16;
- } m88200;
+ unsigned cpupid;
+ struct {
+ unsigned
+ /*empty*/:16,
+ arc:8,
+ version:7,
+ master:1;
+ } m88100;
+ struct {
+ unsigned
+ id:8,
+ type:3,
+ version:5,
+ /*empty*/:16;
+ } m88200;
};
#endif ASSEMBLER
-#define M88100 0
-#define M88200 5
-#define M88204 6
+#define M88100 0
+#define M88200 5
+#define M88204 6
#endif _M88K_CPUS_