summaryrefslogtreecommitdiffstats
path: root/kernel/tty.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/tty.h')
-rw-r--r--kernel/tty.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/kernel/tty.h b/kernel/tty.h
new file mode 100644
index 0000000..3c4b09e
--- /dev/null
+++ b/kernel/tty.h
@@ -0,0 +1,14 @@
+#ifndef _TTY_H_
+#define _TTY_H_
+
+#include "types.h"
+
+void tty_init();
+
+void tty_setcolor(uint8_t color);
+
+void tty_putchar(char c);
+
+void tty_writestring(const char* data);
+
+#endif