summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/hp_ipc_dsk.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/formats/hp_ipc_dsk.h')
-rw-r--r--src/lib/formats/hp_ipc_dsk.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/lib/formats/hp_ipc_dsk.h b/src/lib/formats/hp_ipc_dsk.h
new file mode 100644
index 00000000000..11969da02e2
--- /dev/null
+++ b/src/lib/formats/hp_ipc_dsk.h
@@ -0,0 +1,30 @@
+// license:BSD-3-Clause
+// copyright-holders:Sergey Svishchev
+/*********************************************************************
+
+ formats/hp_ipc_dsk.h
+
+ hp_ipc format
+
+*********************************************************************/
+
+#ifndef HP_IPC_DSK_H_
+#define HP_IPC_DSK_H_
+
+#include "wd177x_dsk.h"
+
+class hp_ipc_format : public wd177x_format {
+public:
+ hp_ipc_format();
+
+ virtual const char *name() const override;
+ virtual const char *description() const override;
+ virtual const char *extensions() const override;
+
+private:
+ static const format formats[];
+};
+
+extern const floppy_format_type FLOPPY_HP_IPC_FORMAT;
+
+#endif