From ae803baa4e0ec584c7afd3f6d55f2e6b32010b46 Mon Sep 17 00:00:00 2001 From: Alexis211 Date: Fri, 21 Aug 2009 21:16:48 +0200 Subject: System boots up and shows a nice ASCII art logo. --- Source/Kernel/Devices/Display/VGATextOutput.class.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Source/Kernel/Devices/Display/VGATextOutput.class.h (limited to 'Source/Kernel/Devices/Display/VGATextOutput.class.h') 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 + +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 -- cgit v1.2.3