home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (c) 1991 Regents of the University of California */
-
- #ifndef lint
- static char SCCSid[] = "@(#)devtable.c 2.2 12/13/91 LBL";
- #endif
-
- /*
- * devtable.c - device table for rview.
- *
- * 3/30/88
- */
-
- #include "driver.h"
-
- char dev_default[] = "svga";
-
- extern struct driver *vga_init();
-
- struct device devtable[] = { /* supported devices */
- {"vga", "MS-DOS VGA driver", vga_init},
- {"svga", "MS-DOS SVGA driver", vga_init},
- {0} /* terminator */
- };
-