FoenixMCP/src/dev/console.h
Peter Weingartner 1dbc50c7fe SYSCALL framework
Initial framework for system calls created.
2021-09-13 13:07:00 -04:00

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