summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/atom_dsk.h
diff options
context:
space:
mode:
author ImJezze <jezze@gmx.net>2015-10-20 21:34:36 +0200
committer ImJezze <jezze@gmx.net>2015-10-20 21:34:36 +0200
commita7b8acbe3eebcf17367baa642375cfa47ae4ea85 (patch)
tree854b859d6176802c0278f4b00de3f7c774e02dda /src/lib/formats/atom_dsk.h
parent4610935e796661874bb4ee7ec6536d9423aeb7be (diff)
parent74aae76c4e3e257f99d139c4febb5d86d1419e50 (diff)
Merge pull request #6 from mamedev/master
Sync to base master
Diffstat (limited to 'src/lib/formats/atom_dsk.h')
-rw-r--r--src/lib/formats/atom_dsk.h22
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