aboutsummaryrefslogtreecommitdiff
path: root/drivers/tty.h
diff options
context:
space:
mode:
authorFranklin Wei <frankhwei536@gmail.com>2015-02-02 21:48:38 -0500
committerFranklin Wei <frankhwei536@gmail.com>2015-02-02 21:48:38 -0500
commitc8a195e1eb19d346c03c1dfa6ed66c6215caefa2 (patch)
tree3096ea08f7f213d7efe56a86391ab79b27333d40 /drivers/tty.h
parent5c84e678defa9333aefcdcd0870564fb945a8c61 (diff)
downloadkappa-c8a195e1eb19d346c03c1dfa6ed66c6215caefa2.zip
kappa-c8a195e1eb19d346c03c1dfa6ed66c6215caefa2.tar.gz
kappa-c8a195e1eb19d346c03c1dfa6ed66c6215caefa2.tar.bz2
kappa-c8a195e1eb19d346c03c1dfa6ed66c6215caefa2.tar.xz
Refactor, begin writing a PS/2 driver
Diffstat (limited to 'drivers/tty.h')
-rw-r--r--drivers/tty.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/tty.h b/drivers/tty.h
deleted file mode 100644
index 0e142c6..0000000
--- a/drivers/tty.h
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <stdint.h>
-
-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*);