diff options
author | 2013-06-06 14:00:58 +0000 | |
---|---|---|
committer | 2013-06-06 14:00:58 +0000 | |
commit | d8571d9f57f07faf692beb08ec1edf95124555fa (patch) | |
tree | 2c76a067cc15356c7bb739f7f99dc667c488a190 /src/lib/formats/ep64_dsk.h | |
parent | 61669e5688d46f38d9a480508ba975e141aa30f4 (diff) |
(MESS) ep64: Modernized the Enterprise 64/128 driver. [Curt Coder]
Diffstat (limited to 'src/lib/formats/ep64_dsk.h')
-rw-r--r-- | src/lib/formats/ep64_dsk.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/lib/formats/ep64_dsk.h b/src/lib/formats/ep64_dsk.h new file mode 100644 index 00000000000..aca14ff6af4 --- /dev/null +++ b/src/lib/formats/ep64_dsk.h @@ -0,0 +1,28 @@ +/********************************************************************* + + formats/ep64_dsk.h + + Enterprise Sixty Four disk image format + +*********************************************************************/ + +#ifndef EP64_DSK_H_ +#define EP64_DSK_H_ + +#include "wd177x_dsk.h" + +class ep64_format : public wd177x_format { +public: + ep64_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_EP64_FORMAT; + +#endif |