From c8a195e1eb19d346c03c1dfa6ed66c6215caefa2 Mon Sep 17 00:00:00 2001 From: Franklin Wei Date: Mon, 2 Feb 2015 21:48:38 -0500 Subject: Refactor, begin writing a PS/2 driver --- drivers/include/tty.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 drivers/include/tty.h (limited to 'drivers/include/tty.h') diff --git a/drivers/include/tty.h b/drivers/include/tty.h new file mode 100644 index 0000000..0e142c6 --- /dev/null +++ b/drivers/include/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