Header file with dc7085 (dz-11 clone) declarations used by pmax console and

framebuffer code.
This commit is contained in:
jonathan 1996-10-13 03:42:17 +00:00
parent d286889901
commit 9bcd95a0ae
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
/* $NetBSD: dc_cons.h,v 1.1 1996/10/13 03:42:17 jonathan Exp $ */
#ifdef _KERNEL
#ifndef _DC_CONS_H
#define _DC_CONS_H
/*
* Following declaratios for console code.
* XXX should be redesigned to expose less driver internals.
*/
void dc_consinit __P((dev_t dev, dcregs *dcaddr));
extern int dcGetc __P ((dev_t dev));
extern int dcparam __P((register struct tty *tp, register struct termios *t));
extern void dcPutc __P((dev_t dev, int c));
#endif /* _DCVAR_H */
#endif /* _KERNEL */