xref: /netbsd-src/sys/arch/sun68k/stand/bootxx/conf.c (revision 76c7fc5f6b13ed0b1508e6b313e88e59977ed78e)
1 /*	$NetBSD: conf.c,v 1.2 2002/05/15 04:07:42 lukem Exp $	*/
2 
3 #include <stand.h>
4 #include <dev_disk.h>
5 
6 struct devsw devsw[] = {
7 	{ "disk", disk_strategy, disk_open, disk_close, disk_ioctl },
8 };
9 int	ndevs = 1;
10 
11 #ifdef DEBUG
12 int debug;
13 #endif /* DEBUG */
14