1
0
mirror of https://github.com/jscrane/r65emu.git synced 2024-06-01 22:41:30 +00:00
r65emu/utftdisplay.h
2014-10-19 16:06:05 +01:00

20 lines
341 B
C++

#ifndef _UTFT_DISPLAY_H
#define _UTFT_DISPLAY_H
class Stream;
class UTFTDisplay: public Memory::Device {
public:
void begin(unsigned bg, unsigned fg);
void clear();
void error(char *);
void status(const char *);
protected:
UTFTDisplay(unsigned size): Memory::Device(size) {}
unsigned _bg, _fg, _cx, _cy, _dx, _dy, _oxs;
};
#endif