summaryrefslogtreecommitdiff
path: root/kernel/console.h
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2015-05-17 19:43:59 +0200
committerMichal Idziorek <m.i@gmx.at>2015-05-17 19:43:59 +0200
commitd98828d08eb1f6c1394f38a1df69c73fef0cfefa (patch)
tree31df37430733c906b235b88c2cfa14d835af4bec /kernel/console.h
parent29ea3208b004f15dafa48ae29a75ba7f0c093a74 (diff)
working on vt52 and some cleanup
Diffstat (limited to 'kernel/console.h')
-rw-r--r--kernel/console.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/kernel/console.h b/kernel/console.h
deleted file mode 100644
index 4c56a5a..0000000
--- a/kernel/console.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef CONSOLE_H
-#define CONSOLE_H
-
-#include <stdint.h>
-
-uint32_t console_init();
-void console_put_char(uint8_t c,uint8_t color, uint32_t x, uint32_t y);
-void console_put_char_white(char);
-void console_put_char_red(char);
-void console_put_char_green(char);
-void console_put_char_gray(char);
-void console_put_str_white(char *);
-void console_put_str_red(char *);
-void console_put_str_green(char *);
-void console_put_str_gray(char *);
-void console_del_char();
-
-
-#endif