diff options
Diffstat (limited to 'src/lib/formats/adam_dsk.h')
-rw-r--r-- | src/lib/formats/adam_dsk.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/lib/formats/adam_dsk.h b/src/lib/formats/adam_dsk.h new file mode 100644 index 00000000000..88c312d62fc --- /dev/null +++ b/src/lib/formats/adam_dsk.h @@ -0,0 +1,28 @@ +/********************************************************************* + + formats/adam_dsk.h + + Coleco Adam disk image format + +*********************************************************************/ + +#ifndef ADAM_DSK_H_ +#define ADAM_DSK_H_ + +#include "wd177x_dsk.h" + +class adam_format : public wd177x_format { +public: + adam_format(); + + virtual const char *name() const; + virtual const char *description() const; + virtual const char *extensions() const; + +private: + static const format formats[]; +}; + +extern const floppy_format_type FLOPPY_ADAM_FORMAT; + +#endif |