diff options
author | 2012-11-28 15:58:47 +0000 | |
---|---|---|
committer | 2012-11-28 15:58:47 +0000 | |
commit | f2dacf28135ed695ea0b3bb9a4557f753e8b726f (patch) | |
tree | f05fedfedff49c18138392d5cc1355bba0059585 /src/lib/formats/comx35_dsk.h | |
parent | 21ea8a94e9d7f8387ace558bf0dcc662d704c71a (diff) |
(MESS) comx35: Floppy modernization and expansion interface cleanup. (nw)
Diffstat (limited to 'src/lib/formats/comx35_dsk.h')
-rw-r--r-- | src/lib/formats/comx35_dsk.h | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/src/lib/formats/comx35_dsk.h b/src/lib/formats/comx35_dsk.h index 1fce5f3174f..5cb60c9ce16 100644 --- a/src/lib/formats/comx35_dsk.h +++ b/src/lib/formats/comx35_dsk.h @@ -2,17 +2,27 @@ formats/comx35_dsk.h - COMX35 disk images + COMX-35 disk image format *********************************************************************/ -#ifndef COMX35_DSK_H -#define COMX35_DSK_H +#ifndef COMX35_DSK_H_ +#define COMX35_DSK_H_ -#include "flopimg.h" +#include "wd177x_dsk.h" -/**************************************************************************/ +class comx35_format : public wd177x_format { +public: + comx35_format(); -LEGACY_FLOPPY_OPTIONS_EXTERN(comx35); + virtual const char *name() const; + virtual const char *description() const; + virtual const char *extensions() const; -#endif /* COMX35_DSK_H */ +private: + static const format formats[]; +}; + +extern const floppy_format_type FLOPPY_COMX35_FORMAT; + +#endif |