diff options
author | Per Fogelstrom <pefo@cvs.openbsd.org> | 1998-03-16 09:38:53 +0000 |
---|---|---|
committer | Per Fogelstrom <pefo@cvs.openbsd.org> | 1998-03-16 09:38:53 +0000 |
commit | a963ca51673d0d081904efce31dd28f05d83e730 (patch) | |
tree | f51de935de8777cae9204bbaa29b11aa7007425d /sys/arch/arc/isa | |
parent | c1aa08ed9b8f4b392adef8685e4f55ff3b189dbb (diff) |
DDB.
Support for Algorithmics R5000/R10000 evaluation board. So far only the
RM5260 is supported. RM5270 - RM7000 later. R5000 and R10000 depending
on access to cpu modules.
vm_machdep.c moved to arch/mips/mips.
Diffstat (limited to 'sys/arch/arc/isa')
-rw-r--r-- | sys/arch/arc/isa/isabus.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/arc/isa/isabus.c b/sys/arch/arc/isa/isabus.c index fbc8ea90884..8486aa5ef58 100644 --- a/sys/arch/arc/isa/isabus.c +++ b/sys/arch/arc/isa/isabus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isabus.c,v 1.14 1998/03/01 16:50:30 niklas Exp $ */ +/* $OpenBSD: isabus.c,v 1.15 1998/03/16 09:38:46 pefo Exp $ */ /* $NetBSD: isa.c,v 1.33 1995/06/28 04:30:51 cgd Exp $ */ /*- @@ -174,6 +174,7 @@ isabrattach(parent, self, aux) /* set up interrupt handlers */ switch(system_type) { case ACER_PICA_61: + case MAGNUM: set_intr(INT_MASK_2, isabr_iointr, 3); break; case DESKSTATION_TYNE: @@ -391,6 +392,7 @@ isabr_iointr(mask, cf) switch(system_type) { case ACER_PICA_61: + case MAGNUM: isa_vector = in32(R4030_SYS_ISA_VECTOR) & (ICU_LEN - 1); break; |