summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--scripts/src/formats.lua12
-rw-r--r--src/lib/formats/cd90_640_dsk.cpp56
-rw-r--r--src/lib/formats/cd90_640_dsk.h32
-rw-r--r--[-rwxr-xr-x]src/mame/apple/apple2video.cpp0
-rw-r--r--src/mame/thomson/thomson.cpp1
5 files changed, 0 insertions, 101 deletions
diff --git a/scripts/src/formats.lua b/scripts/src/formats.lua
index d16b4b2b522..143e59e0c38 100644
--- a/scripts/src/formats.lua
+++ b/scripts/src/formats.lua
@@ -541,18 +541,6 @@ end
--------------------------------------------------
--
---@src/lib/formats/cd90_640_dsk.h,FORMATS["CD90_640_DSK"] = true
---------------------------------------------------
-
-if opt_tool(FORMATS, "CD90_640_DSK") then
- files {
- MAME_DIR.. "src/lib/formats/cd90_640_dsk.cpp",
- MAME_DIR.. "src/lib/formats/cd90_640_dsk.h",
- }
-end
-
---------------------------------------------------
---
--@src/lib/formats/cgenie_dsk.h,FORMATS["CGENIE_DSK"] = true
--------------------------------------------------
diff --git a/src/lib/formats/cd90_640_dsk.cpp b/src/lib/formats/cd90_640_dsk.cpp
deleted file mode 100644
index 407d9b860cb..00000000000
--- a/src/lib/formats/cd90_640_dsk.cpp
+++ /dev/null
@@ -1,56 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Dirk Best
-/***************************************************************************
-
- Thompson CD90-640 FDC
-
- Disk image format
-
- TODO:
- - Gap sizes unverified for FM
-
-***************************************************************************/
-
-#include "cd90_640_dsk.h"
-
-cd90_640_format::cd90_640_format() : wd177x_format(formats)
-{
-}
-
-const char *cd90_640_format::name() const
-{
- return "cd90_640";
-}
-
-const char *cd90_640_format::description() const
-{
- return "CD90-640 disk image";
-}
-
-const char *cd90_640_format::extensions() const
-{
- return "fd";
-}
-
-const cd90_640_format::format cd90_640_format::formats[] =
-{
- {
- floppy_image::FF_525, floppy_image::SSSD, floppy_image::FM,
- 4000, 16, 40, 1, 128, {}, 1, {}, 14, 11, 12
- },
- {
- floppy_image::FF_525, floppy_image::SSDD, floppy_image::MFM,
- 2000, 16, 40, 1, 256, {}, 1, {}, 31, 22, 44
- },
- {
- floppy_image::FF_525, floppy_image::DSSD, floppy_image::FM,
- 4000, 16, 40, 2, 128, {}, 1, {}, 14, 11, 12
- },
- {
- floppy_image::FF_525, floppy_image::DSDD, floppy_image::MFM,
- 2000, 16, 40, 2, 256, {}, 1, {}, 31, 22, 44
- },
- {}
-};
-
-const cd90_640_format FLOPPY_CD90_640_FORMAT;
diff --git a/src/lib/formats/cd90_640_dsk.h b/src/lib/formats/cd90_640_dsk.h
deleted file mode 100644
index 9d075c97bfe..00000000000
--- a/src/lib/formats/cd90_640_dsk.h
+++ /dev/null
@@ -1,32 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Dirk Best
-/***************************************************************************
-
- Thompson CD90-640 FDC
-
- Disk image format
-
-***************************************************************************/
-#ifndef MAME_FORMATS_CD90_640_DSK_H
-#define MAME_FORMATS_CD90_640_DSK_H
-
-#pragma once
-
-#include "wd177x_dsk.h"
-
-class cd90_640_format : public wd177x_format
-{
-public:
- cd90_640_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 cd90_640_format FLOPPY_CD90_640_FORMAT;
-
-#endif // MAME_FORMATS_CD90_640_DSK_H
diff --git a/src/mame/apple/apple2video.cpp b/src/mame/apple/apple2video.cpp
index b37e555d4a1..b37e555d4a1 100755..100644
--- a/src/mame/apple/apple2video.cpp
+++ b/src/mame/apple/apple2video.cpp
diff --git a/src/mame/thomson/thomson.cpp b/src/mame/thomson/thomson.cpp
index 3e8f9214a7c..f3cb89f21fa 100644
--- a/src/mame/thomson/thomson.cpp
+++ b/src/mame/thomson/thomson.cpp
@@ -98,7 +98,6 @@
#include "speaker.h"
#include "formats/basicdsk.h"
-#include "formats/cd90_640_dsk.h"
#include "formats/thom_cas.h"
#include "formats/thom_dsk.h"