summaryrefslogtreecommitdiff
path: root/Source/Kernel/Devices/Display/VGATextOutput.class.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Kernel/Devices/Display/VGATextOutput.class.h')
-rw-r--r--Source/Kernel/Devices/Display/VGATextOutput.class.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/Source/Kernel/Devices/Display/VGATextOutput.class.h b/Source/Kernel/Devices/Display/VGATextOutput.class.h
new file mode 100644
index 0000000..72ad604
--- /dev/null
+++ b/Source/Kernel/Devices/Display/VGATextOutput.class.h
@@ -0,0 +1,15 @@
+#ifndef DEF_VGATEXTOUTPUT_CLASS_H
+#define DEF_VGATEXTOUTPUT_CLASS_H
+
+#include <Devices/Display/Display.proto.h>
+
+class VGATextOutput : public Display {
+ public:
+ u16int textCols();
+ u16int textRows();
+ void putChar(u16int line, u16int col, char c, char color);
+ void moveCursor(u16int line, u16int col);
+ void clear();
+};
+
+#endif