blob: 27dfe237a332f1803df6c68c03fcdcad6a1e9a34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _TTY_H_
#define _TTY_H_
#include "types.h"
void tty_init();
void tty_setcolor(uint8_t color);
void tty_putc(char c);
void tty_puts(const char* data);
#endif
|