/* conf.c (GENERATED FILE; DO NOT EDIT) */

#include <conf.h>

/* device independent I/O switch */

struct	devsw	devtab[NDEVS] = {

/*  Format of entries is:
device-number, device-name,
init, open, close,
read, write, seek,
getc, putc, cntl,
device-csr-address, input-vector, output-vector,
iint-handler, oint-handler, control-block, minor-device,
*/

/*  CONSOLE  is tty  */

0, "CONSOLE",
ttyinit, ttyopen, ionull,
ttyread, ttywrite, ioerr,
ttygetc, ttyputc, ttycntl,
0000000, 0000, 0000,
ttyiin, ttyoin, NULLPTR, 0,

/*  KBMON  is kbmon  */

1, "KBMON",
kbminit, ionull, ionull,
kbmread, kbmwrite, ioerr,
kbmgetc, kbmputc, kbmcntl,
0000000, 0041, 0000,
kbmint, ioerr, NULLPTR, 0
	};
