xref: /netbsd-src/sys/arch/sun68k/stand/bootyy/conf.c (revision 9fbd88883c38d0c0fbfcbe66d76fe6b0fab3f9de)
1 /*	$NetBSD: conf.c,v 1.1 2001/06/14 12:57:13 fredette 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 int debug;
12