mtgos-mtgos-3ds9/kernel/hw/pc/cgaterm/cgaterm.hpp

15 lines
288 B
C++
Raw Normal View History

2017-04-24 16:38:22 +00:00
#pragma once
#include <tty.hpp>
/**
* TTY for a CGA terminal. Limitations: 80x25, no RGB
*/
2017-04-26 10:27:27 +00:00
class CGATerm : public TTY {
2017-04-24 16:38:22 +00:00
protected:
2017-04-26 10:27:27 +00:00
virtual auto plotChar(int x, int y, int c) -> void;
2017-04-24 16:38:22 +00:00
public:
2017-04-26 10:27:27 +00:00
CGATerm();
virtual ~CGATerm();
virtual auto rgbSupport() -> bool;
2017-04-24 16:38:22 +00:00
};