diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-30 08:39:20 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-30 08:39:20 +0000 |
commit | 8cf410b77304be470162c20a7ed00d8d4cc18521 (patch) | |
tree | e3a33c38215f5316d12e87bc79b870d4de697ae1 /sys/arch/pmax/tc | |
parent | daafa1db7630c5204dbc2cade78b8f37208c5f86 (diff) |
from netbsd: Add untested, partial support for Decsystem 5100 (mipsfair).
Diffstat (limited to 'sys/arch/pmax/tc')
-rw-r--r-- | sys/arch/pmax/tc/tc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/pmax/tc/tc.c b/sys/arch/pmax/tc/tc.c index a3e15b0645e..02cc6023f1d 100644 --- a/sys/arch/pmax/tc/tc.c +++ b/sys/arch/pmax/tc/tc.c @@ -1,4 +1,4 @@ -/* $NetBSD: tc.c,v 1.5 1995/10/09 01:45:30 jonathan Exp $ */ +/* $NetBSD: tc.c,v 1.6 1995/12/28 06:44:57 jonathan Exp $ */ /* * Copyright (c) 1994, 1995 Carnegie-Mellon University. @@ -170,6 +170,8 @@ cpu_tcdesc(cpu) } else if (cpu == DS_PMAX) { DPRINTF(("tcattach: PMAX, no turbochannel\n")); return NULL; + } else if (cpu == DS_MIPSFAIR) { + DPRINTF(("tcattach: Mipsfair (5100), no turbochannel\n")); } else { panic("tcattach: Unrecognized bus type 0x%x\n", cpu); } |