diff options
Diffstat (limited to 'src/lib/formats/rc759_dsk.h')
-rw-r--r-- | src/lib/formats/rc759_dsk.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/lib/formats/rc759_dsk.h b/src/lib/formats/rc759_dsk.h new file mode 100644 index 00000000000..f49bb19f210 --- /dev/null +++ b/src/lib/formats/rc759_dsk.h @@ -0,0 +1,33 @@ +// license: BSD-3-Clause +// copyright-holders: Dirk Best +/*************************************************************************** + + Regnecentralen RC759 Piccoline + + Disk image format + +***************************************************************************/ + +#ifndef MAME_FORMATS_RC759_DSK_H +#define MAME_FORMATS_RC759_DSK_H + +#pragma once + +#include "wd177x_dsk.h" + +class rc759_format : public wd177x_format +{ +public: + rc759_format(); + + virtual const char *name() const noexcept override; + virtual const char *description() const noexcept override; + virtual const char *extensions() const noexcept override; + +private: + static const format formats[]; +}; + +extern const rc759_format FLOPPY_RC759_FORMAT; + +#endif // MAME_FORMATS_RC759_DSK_H |