Apple1-esp/io.h

24 lines
302 B
C
Raw Normal View History

2014-11-11 17:13:25 +00:00
#ifndef _IO_H
#define _IO_H
class io: public UTFTDisplay {
public:
io(): UTFTDisplay(256) {}
void operator=(byte);
operator byte();
void reset();
void down(unsigned scan);
void up(unsigned scan);
void checkpoint(Stream &);
void restore(Stream &);
private:
void display(byte);
};
#endif