diff options
Diffstat (limited to 'sys/arch/mvme88k/stand/bootxx/conf.c')
-rw-r--r-- | sys/arch/mvme88k/stand/bootxx/conf.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sys/arch/mvme88k/stand/bootxx/conf.c b/sys/arch/mvme88k/stand/bootxx/conf.c new file mode 100644 index 00000000000..c4545664577 --- /dev/null +++ b/sys/arch/mvme88k/stand/bootxx/conf.c @@ -0,0 +1,14 @@ +/* $OpenBSD: conf.c,v 1.1 1998/08/22 08:27:08 smurph Exp $ */ + +#include <sys/types.h> +#include <machine/prom.h> + +#include "stand.h" +#include "libsa.h" + +struct devsw devsw[] = { + { "bugsc", bugscstrategy, bugscopen, bugscclose, bugscioctl }, +}; +int ndevs = (sizeof(devsw)/sizeof(devsw[0])); + +int debug; |