blob: 87773420e771817062ba7e4b846f53bd962e61a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* con.h
*
* Basic VGA text console. Implements printf() and puts().
*/
#ifndef _CON_H
#define _CON_H
void con_init(void);
void con_clear(void);
int puts(char *s);
int printf(char*, ...);
#endif
|