mirror of
https://github.com/jscrane/Apple1.git
synced 2024-11-22 06:31:37 +00:00
05f50a18fd
* extract disp from io * extract screen_disp * working * ... * working * refactor * config
13 lines
199 B
C++
13 lines
199 B
C++
#ifndef _DISP_H
|
|
#define _DISP_H
|
|
|
|
class disp: public serial_dsp {
|
|
public:
|
|
virtual void checkpoint(Stream &) =0;
|
|
virtual void restore(Stream &) =0;
|
|
|
|
virtual void status(const char *) =0;
|
|
};
|
|
|
|
#endif
|