diff options
Diffstat (limited to 'src/lib/formats/atom_dsk.h')
-rw-r--r-- | src/lib/formats/atom_dsk.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/lib/formats/atom_dsk.h b/src/lib/formats/atom_dsk.h new file mode 100644 index 00000000000..45187205f1c --- /dev/null +++ b/src/lib/formats/atom_dsk.h @@ -0,0 +1,22 @@ +#ifndef __ATOM_DSK_H__ +#define __ATOM_DSK_H__ + +#include "flopimg.h" +#include "wd177x_dsk.h" + +class atom_format : public wd177x_format +{ +public: + atom_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_ATOM_FORMAT; + +#endif |