summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/pc98nfd_dsk.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/formats/pc98nfd_dsk.h')
-rw-r--r--src/lib/formats/pc98nfd_dsk.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/lib/formats/pc98nfd_dsk.h b/src/lib/formats/pc98nfd_dsk.h
new file mode 100644
index 00000000000..e3d3270e1c9
--- /dev/null
+++ b/src/lib/formats/pc98nfd_dsk.h
@@ -0,0 +1,31 @@
+/*********************************************************************
+
+ formats/pc98nfd_dsk.h
+
+ PC98NFD disk images
+
+*********************************************************************/
+
+#ifndef PC98NFD_DSK_H
+#define PC98NFD_DSK_H
+
+#include "flopimg.h"
+
+
+class pc98nfd_format : public floppy_image_format_t
+{
+public:
+ pc98nfd_format();
+
+ virtual int identify(io_generic *io, UINT32 form_factor);
+ virtual bool load(io_generic *io, UINT32 form_factor, floppy_image *image);
+
+ virtual const char *name() const;
+ virtual const char *description() const;
+ virtual const char *extensions() const;
+ virtual bool supports_save() const;
+};
+
+extern const floppy_format_type FLOPPY_PC98NFD_FORMAT;
+
+#endif /* PC98NFD_DSK_H */