mirror of
https://github.com/jscrane/Apple1.git
synced 2025-02-16 17:30:28 +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
|