diff options
author | 2015-07-20 08:11:41 +0200 | |
---|---|---|
committer | 2015-07-20 08:11:41 +0200 | |
commit | 4bcb0c13f50ddb1cd3fd0341b4bb31d9c3c7fc7a (patch) | |
tree | 55eccacfca0e69435d0d4e6615205310ca11f271 /src/lib/formats/hector_minidisc.h | |
parent | d132946c6f45aa8d271c6180e86f72dd08243048 (diff) | |
parent | 229785f695b26c702c8490792611f59d0366a933 (diff) |
Merge pull request #5 from mamedev/master
Sync to base master
Diffstat (limited to 'src/lib/formats/hector_minidisc.h')
-rw-r--r-- | src/lib/formats/hector_minidisc.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/lib/formats/hector_minidisc.h b/src/lib/formats/hector_minidisc.h new file mode 100644 index 00000000000..d850573f2b6 --- /dev/null +++ b/src/lib/formats/hector_minidisc.h @@ -0,0 +1,33 @@ +// license:GPL-2.0+ +// copyright-holders:Dirk Best +/*************************************************************************** + + Hector Minidisc + + Disk image format + +***************************************************************************/ + +#pragma once + +#ifndef __HMD_DSK_H__ +#define __HMD_DSK_H__ + +#include "upd765_dsk.h" + +class hmd_format : public upd765_format +{ +public: + hmd_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_HMD_FORMAT; + +#endif // __HMD_DSK_H__ |