diff options
Diffstat (limited to 'src/lib/formats/d71_dsk.h')
-rw-r--r-- | src/lib/formats/d71_dsk.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/lib/formats/d71_dsk.h b/src/lib/formats/d71_dsk.h new file mode 100644 index 00000000000..8f24c5ec315 --- /dev/null +++ b/src/lib/formats/d71_dsk.h @@ -0,0 +1,32 @@ +// license:BSD-3-Clause +// copyright-holders:Curt Coder +/********************************************************************* + + formats/d71_dsk.h + + Commodore 2040 sector disk image format + +*********************************************************************/ + +#ifndef D71_DSK_H_ +#define D71_DSK_H_ + +#include "d64_dsk.h" + +class d71_format : public d64_format { +public: + d71_format(); + + virtual const char *name() const; + virtual const char *description() const; + virtual const char *extensions() const; + +protected: + static const format formats[]; +}; + +extern const floppy_format_type FLOPPY_D71_FORMAT; + + + +#endif |