Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/vax/vax Some more CPUs... From Michael Kukat.
details: https://anonhg.NetBSD.org/src/rev/c2ba0c83aae1
branches: trunk
changeset: 485907:c2ba0c83aae1
user: ragge <ragge%NetBSD.org@localhost>
date: Mon May 08 18:48:30 2000 +0000
description:
Some more CPUs... From Michael Kukat.
diffstat:
sys/arch/vax/vax/locore.c | 22 ++++++++++++++++++----
1 files changed, 18 insertions(+), 4 deletions(-)
diffs (69 lines):
diff -r a6caeb1ed9d9 -r c2ba0c83aae1 sys/arch/vax/vax/locore.c
--- a/sys/arch/vax/vax/locore.c Mon May 08 18:45:26 2000 +0000
+++ b/sys/arch/vax/vax/locore.c Mon May 08 18:48:30 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: locore.c,v 1.44 2000/03/28 23:57:30 simonb Exp $ */
+/* $NetBSD: locore.c,v 1.45 2000/05/08 18:48:30 ragge Exp $ */
/*
* Copyright (c) 1994, 1998 Ludd, University of Lule}, Sweden.
* All rights reserved.
@@ -63,8 +63,8 @@
#include "opt_vax660.h"
#include "opt_vax670.h"
-void start __P((void));
-void main __P((void));
+void start(void);
+void main(void);
extern paddr_t avail_end;
paddr_t esym;
@@ -82,11 +82,13 @@
extern struct cpu_dep ka46_calls;
extern struct cpu_dep ka48_calls;
extern struct cpu_dep ka49_calls;
+extern struct cpu_dep ka53_calls;
extern struct cpu_dep ka410_calls;
extern struct cpu_dep ka630_calls;
extern struct cpu_dep ka650_calls;
extern struct cpu_dep ka660_calls;
extern struct cpu_dep ka670_calls;
+extern struct cpu_dep ka680_calls;
/*
* Start is called from boot; the first routine that is called
@@ -161,7 +163,7 @@
#if VAX48
case VAX_BTYP_48:
dep_call = &ka48_calls;
- strcat(cpu_model, "4000 VLC");
+ strcat(cpu_model, "VAXstation 4000 VLC");
break;
#endif
#if VAX49
@@ -170,6 +172,12 @@
strcat(cpu_model, "4000/90");
break;
#endif
+#if VAX53
+ case VAX_BTYP_53:
+ dep_call = &ka53_calls;
+ strcpy(cpu_model, "VAX 4000/105A");
+ break;
+#endif
#if VAX630
case VAX_BTYP_630:
dep_call = &ka630_calls;
@@ -211,6 +219,12 @@
strcpy(cpu_model,"VAX 4000/300");
break;
#endif
+#if VAX680
+ case VAX_BTYP_680:
+ dep_call = &ka680_calls;
+ strcpy(cpu_model,"VAX 4000/500");
+ break;
+#endif
#if VAX8200
case VAX_BTYP_8000:
mastercpu = mfpr(PR_BINID);
Home |
Main Index |
Thread Index |
Old Index