From 439d724ce5939cab7a5c858d1829f212e01e0402 Mon Sep 17 00:00:00 2001 From: Franklin Wei Date: Sun, 1 Feb 2015 11:33:16 -0500 Subject: first real commit --- drivers/tty.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 drivers/tty.h (limited to 'drivers/tty.h') diff --git a/drivers/tty.h b/drivers/tty.h new file mode 100644 index 0000000..0e142c6 --- /dev/null +++ b/drivers/tty.h @@ -0,0 +1,9 @@ +#include + +void tty_init(void); +void tty_clear(void); +void tty_set_color(uint8_t); +uint8_t tty_get_color(void); +void tty_putchar_at(char ch, uint8_t color, int x, int y); +void tty_putchar(char ch); +void tty_puts(const char*); -- cgit v1.1