6d836436ac
* Do rcons output properly, using cn_tab->cn_dev which points at rcons cdevsw entrypoints. * The pmadx console code was using keyboard (serial) device (major,minor) for raster consoles with special code in the keyboard drivers to catch output intended for consoles, pull it off the device queue, and print them via cnputc(). Ifdef out RCONS_BRAINDAMAGE. * Other minor cleanup to pmax scc driver.
12 lines
293 B
C
12 lines
293 B
C
#ifndef _MACHINE_RCONS_H_
|
|
#define _MACHINE_RCONS_H_
|
|
|
|
#ifdef _KERNEL
|
|
struct consdev;
|
|
extern void rcons_indev __P((struct consdev *));
|
|
extern void rcons_vputc __P((dev_t, int)); /* XXX */
|
|
extern void rcons_input __P((dev_t, int ic)); /*XXX*/
|
|
#endif /* _KERNEL */
|
|
#endif /* _MACHINE_RCONS_H_ */
|
|
|