summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/tim011_dsk.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/formats/tim011_dsk.h')
-rw-r--r--src/lib/formats/tim011_dsk.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/lib/formats/tim011_dsk.h b/src/lib/formats/tim011_dsk.h
new file mode 100644
index 00000000000..a33fca51049
--- /dev/null
+++ b/src/lib/formats/tim011_dsk.h
@@ -0,0 +1,32 @@
+// license:BSD-3-Clause
+// copyright-holders:Miodrag Milanovic
+/*********************************************************************
+
+ formats/tim011_dsk.h
+
+ TIM 011 format
+
+*********************************************************************/
+#ifndef MAME_FORMATS_TIM011_DSK_H
+#define MAME_FORMATS_TIM011_DSK_H
+
+#pragma once
+
+#include "upd765_dsk.h"
+
+class tim011_format : public upd765_format
+{
+public:
+ tim011_format();
+
+ virtual const char *name() const noexcept override;
+ virtual const char *description() const noexcept override;
+ virtual const char *extensions() const noexcept override;
+
+private:
+ static const format formats[];
+};
+
+extern const tim011_format FLOPPY_TIM011_FORMAT;
+
+#endif // MAME_FORMATS_TIM011_DSK_H