diff options
author | 2014-10-10 19:28:34 +0000 | |
---|---|---|
committer | 2014-10-10 19:28:34 +0000 | |
commit | 54047d6b53a1762c2be6f189dabc59f53a58df32 (patch) | |
tree | 37676195e0e6403b4b13b5a814c38442df4eed9e /src/lib/formats/cqm_dsk.h | |
parent | 3c596fcb494c51d334e4ee59936aded0f35bd98e (diff) |
(MESS) dmv: added floppy softlist. [Sandro Ronco]
(MESS) floppy: added read-only support for CopyQM images. (nw)
Diffstat (limited to 'src/lib/formats/cqm_dsk.h')
-rw-r--r-- | src/lib/formats/cqm_dsk.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/lib/formats/cqm_dsk.h b/src/lib/formats/cqm_dsk.h new file mode 100644 index 00000000000..9cb436a3bc3 --- /dev/null +++ b/src/lib/formats/cqm_dsk.h @@ -0,0 +1,31 @@ +/********************************************************************* + + formats/cqm_dsk.h + + CopyQM disk images + +*********************************************************************/ + +#ifndef CQM_DSK_H_ +#define CQM_DSK_H_ + +#include "flopimg.h" + +class cqm_format : public floppy_image_format_t +{ +public: + cqm_format(); + + virtual int identify(io_generic *io, UINT32 form_factor); + virtual bool load(io_generic *io, UINT32 form_factor, floppy_image *image); + virtual bool save(io_generic *io, floppy_image *image); + + virtual const char *name() const; + virtual const char *description() const; + virtual const char *extensions() const; + virtual bool supports_save() const; +}; + +extern const floppy_format_type FLOPPY_CQM_FORMAT; + +#endif /* CQM_DSK_H_ */ |