diff options
Diffstat (limited to 'sys/arch/mvme88k/include/board.h')
-rw-r--r-- | sys/arch/mvme88k/include/board.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/include/board.h b/sys/arch/mvme88k/include/board.h index f0f55c4039d..024c84ec304 100644 --- a/sys/arch/mvme88k/include/board.h +++ b/sys/arch/mvme88k/include/board.h @@ -1,4 +1,4 @@ -/* $OpenBSD: board.h,v 1.11 2001/08/26 14:31:07 miod Exp $ */ +/* $OpenBSD: board.h,v 1.12 2001/12/13 08:55:51 smurph Exp $ */ /* * Copyright (c) 1996 Nivas Madhur * All rights reserved. @@ -108,13 +108,20 @@ #define FPUP_BIT 0x400 /* FPU precise exception */ #define FPUI_BIT 0x800 /* FPU imprecise exception */ +/* machine dependant definitions */ + #if defined(MVME187) || defined(MVME197) #include <machine/mvme1x7.h> #endif - +#ifdef MVME187 +#include <machine/mvme187.h> +#endif #ifdef MVME188 #include <machine/mvme188.h> #endif +#ifdef MVME197 +#include <machine/mvme197.h> +#endif #endif /* __MACHINE_BOARD_H__ */ |