summaryrefslogtreecommitdiff
path: root/Source/Kernel/Devices/Display/VGATextOutput.class.h
blob: a7968c7644130684461b359654845eac35721edb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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, u8int color);
	void moveCursor(u16int line, u16int col);
	void clear();
};

#endif