xref: /netbsd/sys/arch/mvme68k/stand/bootxx/conf.c (revision bf9ec67e)
1 /*	$NetBSD: conf.c,v 1.1 1996/05/17 20:11:33 chuck Exp $	*/
2 
3 #include <sys/types.h>
4 #include <machine/prom.h>
5 
6 #include "stand.h"
7 #include "libsa.h"
8 
9 struct devsw devsw[] = {
10 	{ "bugsc", bugscstrategy, bugscopen, bugscclose, bugscioctl },
11 };
12 int     ndevs = (sizeof(devsw)/sizeof(devsw[0]));
13 
14 int debug;
15