17 lines
238 B
C
17 lines
238 B
C
|
/**
|
||
|
* Implementation of the console channel device
|
||
|
*
|
||
|
* The console maps to the main screen and keyboard.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef __CONSOLE_H
|
||
|
#define __CONSOLE_H
|
||
|
|
||
|
//
|
||
|
// Install the console device driver
|
||
|
//
|
||
|
extern short con_install();
|
||
|
|
||
|
#endif
|