summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/mtx_dsk.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/formats/mtx_dsk.h')
-rw-r--r--src/lib/formats/mtx_dsk.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/lib/formats/mtx_dsk.h b/src/lib/formats/mtx_dsk.h
deleted file mode 100644
index 86f74bccfc5..00000000000
--- a/src/lib/formats/mtx_dsk.h
+++ /dev/null
@@ -1,33 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Nigel Barnes
-/***************************************************************************
-
- Memotech MTX
-
- Disk image format
-
-***************************************************************************/
-
-#pragma once
-
-#ifndef __MTX_DSK_H__
-#define __MTX_DSK_H__
-
-#include "wd177x_dsk.h"
-
-class mtx_format : public wd177x_format
-{
-public:
- mtx_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_MTX_FORMAT;
-
-#endif // __MTX_DSK_H__