diff options
Diffstat (limited to 'src/lib/formats/dmv_dsk.h')
-rw-r--r-- | src/lib/formats/dmv_dsk.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/lib/formats/dmv_dsk.h b/src/lib/formats/dmv_dsk.h new file mode 100644 index 00000000000..0e505b37d87 --- /dev/null +++ b/src/lib/formats/dmv_dsk.h @@ -0,0 +1,28 @@ +/********************************************************************* + + formats/dmv_dsk.h + + NCR Decision Mate V format + +*********************************************************************/ + +#ifndef DMV_DSK_H_ +#define DMV_DSK_H_ + +#include "upd765_dsk.h" + +class dmv_format : public upd765_format { +public: + dmv_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_DMV_FORMAT; + +#endif /* DMV_DSK_H_ */ |