summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorSteve Murphree <smurph@cvs.openbsd.org>2001-12-22 19:27:49 +0000
committerSteve Murphree <smurph@cvs.openbsd.org>2001-12-22 19:27:49 +0000
commit8d22d8d006114a93c3cd7f7431277437655ed6a0 (patch)
tree244c5727a422f2288901ffabf2a14dfa65956cb8 /sys/arch
parent145edb836928892536f4844ef159e24d0bf1d534 (diff)
Label changes and comment corrections.
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/mvme88k/mvme88k/locore.S12
-rw-r--r--sys/arch/mvme88k/mvme88k/locore_c_routines.c6
2 files changed, 9 insertions, 9 deletions
diff --git a/sys/arch/mvme88k/mvme88k/locore.S b/sys/arch/mvme88k/mvme88k/locore.S
index aa1fc052434..75d6605f95a 100644
--- a/sys/arch/mvme88k/mvme88k/locore.S
+++ b/sys/arch/mvme88k/mvme88k/locore.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: locore.S,v 1.24 2001/12/22 19:15:40 smurph Exp $ */
+/* $OpenBSD: locore.S,v 1.25 2001/12/22 19:27:48 smurph Exp $ */
/*
* Copyright (c) 1998 Steve Murphree, Jr.
* Copyright (c) 1996 Nivas Madhur
@@ -314,8 +314,8 @@ ASGLOBAL(master_start)
#ifdef M88110
cmp r2, r8, CPU_88110 /* r8 contains cputyp */
bb1 ne, r2, 1f /* if it's a 'mc88110, use different vectors */
- or.u r3, r0, hi16(_m197_vector_list)
- or r3, r3, lo16(_m197_vector_list)
+ or.u r3, r0, hi16(_m88110_vector_list)
+ or r3, r3, lo16(_m88110_vector_list)
bsr.n _vector_init
ldcr r2, VBR
br 2f
@@ -415,10 +415,10 @@ _vector_list_end:
#endif /* M88100 */
#ifdef M88110
.align 4096 /* VBR points to page aligned list */
- global _m197_vector_list, _m197_vector_list_end
-_m197_vector_list: /* references memory BELOW this line */
+ global _m88110_vector_list, _m88110_vector_list_end
+_m88110_vector_list: /* references memory BELOW this line */
#include "machine/exception_vectors2.h"
-_m197_vector_list_end:
+_m88110_vector_list_end:
word END_OF_VECTOR_LIST
#endif /* M88110 */
.align 4096 /* SDT (segment descriptor table */
diff --git a/sys/arch/mvme88k/mvme88k/locore_c_routines.c b/sys/arch/mvme88k/mvme88k/locore_c_routines.c
index da7b6fb247d..7f75a49dac7 100644
--- a/sys/arch/mvme88k/mvme88k/locore_c_routines.c
+++ b/sys/arch/mvme88k/mvme88k/locore_c_routines.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: locore_c_routines.c,v 1.20 2001/12/22 17:57:11 smurph Exp $ */
+/* $OpenBSD: locore_c_routines.c,v 1.21 2001/12/22 19:27:48 smurph Exp $ */
/*
* Mach Operating System
* Copyright (c) 1993-1991 Carnegie Mellon University
@@ -353,7 +353,7 @@ vector_init(m88k_exception_vector_area *vector, unsigned *vector_init_list)
SET_VECTOR(504, to, m88110_stepbpt);
SET_VECTOR(511, to, m88110_userbpt);
break;
-#endif /* MVME197 */
+#endif /* M88110 */
#ifdef M88100
case CPU_88100:
while (num < 496) {
@@ -373,7 +373,7 @@ vector_init(m88k_exception_vector_area *vector, unsigned *vector_init_list)
SET_VECTOR(504, to, stepbpt);
SET_VECTOR(511, to, userbpt);
break;
-#endif /* defined(MVME187) || defined(MVME188) */
+#endif /* M88100 */
}
}