diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-05-03 09:10:29 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-05-03 09:10:29 +0000 |
commit | 595cbd2e050401adf0cab2bab6ce52f902dfbb54 (patch) | |
tree | 8474c159022572bb93d15b7f2c287d1044321bc1 /sys/arch/vax/include/param.h | |
parent | 3472e7ae763d3e453e57b218243b6d60ece25b43 (diff) |
sync w/ 0430
Diffstat (limited to 'sys/arch/vax/include/param.h')
-rw-r--r-- | sys/arch/vax/include/param.h | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/sys/arch/vax/include/param.h b/sys/arch/vax/include/param.h index c9be598e85d..ef969e37240 100644 --- a/sys/arch/vax/include/param.h +++ b/sys/arch/vax/include/param.h @@ -1,5 +1,4 @@ -/* $NetBSD: param.h,v 1.14 1995/12/30 21:37:31 ragge Exp $ */ - +/* $NetBSD: param.h,v 1.19 1996/03/04 05:04:43 cgd Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -41,16 +40,18 @@ #ifndef _VAX_PARAM_H_ #define _VAX_PARAM_H_ -#include "machine/macros.h" -#include "machine/psl.h" +#include <machine/macros.h> +#include <machine/psl.h> /* * Machine dependent constants for VAX. */ -#define MACHINE "vax" +#define _MACHINE vax +#define MACHINE "vax" +#define _MACHINE_ARCH vax #define MACHINE_ARCH "vax" -#define MID_MACHINE MID_VAX +#define MID_MACHINE MID_VAX /* * Round p (pointer or byte index) up to a correctly-aligned value @@ -163,7 +164,7 @@ #define splbio() splx(0x15) /* IPL15 */ #define splnet() splx(0x15) /* IPL15 */ #define spltty() splx(0x15) /* IPL15 */ -#define splimp() splx(0x16) /* IPL16 */ +#define splimp() splx(0x17) /* IPL17 */ #define splclock() splx(0x18) /* IPL18 */ #define splhigh() splx(0x1f) /* IPL1F */ #define splstatclock() splclock() @@ -173,6 +174,11 @@ #define vmapbuf(p,q) #define vunmapbuf(p,q) +/* Prototype needed for delay() */ +#ifndef _LOCORE +void delay __P((int)); +#endif + #define DELAY(x) delay(x) #endif /* _VAX_PARAM_H_ */ |