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/Display.proto.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Source/Kernel/Devices/Display/Display.proto.h (limited to 'Source/Kernel/Devices/Display/Display.proto.h') diff --git a/Source/Kernel/Devices/Display/Display.proto.h b/Source/Kernel/Devices/Display/Display.proto.h new file mode 100644 index 0000000..8e8e29d --- /dev/null +++ b/Source/Kernel/Devices/Display/Display.proto.h @@ -0,0 +1,15 @@ +#ifndef DEF_DISPLAY_PROTO_H +#define DEF_DISPLAY_PROTO_H + +#include + +class Display { + public: + virtual u16int textCols() = 0; + virtual u16int textRows() = 0; + virtual void putChar(u16int line, u16int col, char c, char color) = 0; //Color : + virtual void moveCursor(u16int line, u16int col) = 0; + virtual void clear() = 0; +}; + +#endif -- cgit v1.2.3