Add arc as a target platform.

This commit is contained in:
jonathan 1998-09-11 19:39:28 +00:00
parent a4f0d3aef0
commit ea4898c76c
2 changed files with 7 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: comvar.h,v 1.25 1998/09/05 04:25:35 mark Exp $ */
/* $NetBSD: comvar.h,v 1.26 1998/09/11 19:39:28 jonathan Exp $ */
/*
* Copyright (c) 1996 Christopher G. Demetriou. All rights reserved.
@ -136,7 +136,7 @@ int cominit __P((bus_space_tag_t, int, int, int, tcflag_t,
bus_space_handle_t *));
#ifndef __GENERIC_SOFT_INTERRUPTS
#if defined(alpha)
#if defined(alpha) || defined(arc)
#define __NO_SOFT_SERIAL_INTERRUPT
#endif
#ifdef __NO_SOFT_SERIAL_INTERRUPT

View File

@ -1,4 +1,4 @@
/* $NetBSD: isavar.h,v 1.33 1998/06/09 00:00:21 thorpej Exp $ */
/* $NetBSD: isavar.h,v 1.34 1998/09/11 19:39:28 jonathan Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@ -88,12 +88,15 @@
*/
struct isabus_attach_args;
#if (alpha + arm32 + atari + bebox + i386 != 1)
#if (alpha + arc + arm32 + atari + bebox + i386 != 1)
ERROR: COMPILING FOR UNSUPPORTED MACHINE, OR MORE THAN ONE.
#endif
#if alpha
#include <alpha/isa/isa_machdep.h>
#endif
#if arc
#include <arc/isa/isa_machdep.h>
#endif
#if arm32
#include <arm32/isa/isa_machdep.h>
#endif