mirror of
https://github.com/jscrane/Apple1.git
synced 2024-11-24 19:33:20 +00:00
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
|