summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Sandro Ronco <sronco@users.noreply.github.com>2014-08-15 21:57:33 +0000
committer Sandro Ronco <sronco@users.noreply.github.com>2014-08-15 21:57:33 +0000
commit2af866361bf04ac4a34b3465deafed8b5e29f007 (patch)
treedda30781fbaa791f5916b37f1697e8f3d6943e26
parent1e3b25844b2340d87d6d3d42fb00bb854ff39b8b (diff)
(MESS) removed unneeded files (nw)
-rw-r--r--.gitattributes2
-rw-r--r--src/emu/bus/dmv/dmv_dsk.c54
-rw-r--r--src/emu/bus/dmv/dmv_dsk.h28
3 files changed, 0 insertions, 84 deletions
diff --git a/.gitattributes b/.gitattributes
index b79b3ef5888..67ff92025dd 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -797,8 +797,6 @@ src/emu/bus/cpc/mface2.c svneol=native#text/plain
src/emu/bus/cpc/mface2.h svneol=native#text/plain
src/emu/bus/cpc/symbfac2.c svneol=native#text/plain
src/emu/bus/cpc/symbfac2.h svneol=native#text/plain
-src/emu/bus/dmv/dmv_dsk.c svneol=native#text/plain
-src/emu/bus/dmv/dmv_dsk.h svneol=native#text/plain
src/emu/bus/dmv/dmvbus.c svneol=native#text/plain
src/emu/bus/dmv/dmvbus.h svneol=native#text/plain
src/emu/bus/dmv/k220.c svneol=native#text/plain
diff --git a/src/emu/bus/dmv/dmv_dsk.c b/src/emu/bus/dmv/dmv_dsk.c
deleted file mode 100644
index 2dabe9ff05e..00000000000
--- a/src/emu/bus/dmv/dmv_dsk.c
+++ /dev/null
@@ -1,54 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Olivier Galibert
-/*********************************************************************
-
- formats/dmv_dsk.c
-
- NCR Decision Mate V format
-
-*********************************************************************/
-
-#include "emu.h"
-#include "formats/dmv_dsk.h"
-
-dmv_format::dmv_format() : upd765_format(formats)
-{
-}
-
-const char *dmv_format::name() const
-{
- return "dmv";
-}
-
-const char *dmv_format::description() const
-{
- return "Decision Mate V disk image";
-}
-
-const char *dmv_format::extensions() const
-{
- return "img";
-}
-
-// gap size from hardware reference manual
-const dmv_format::format dmv_format::formats[] = {
- {
- floppy_image::FF_525, floppy_image::DSDD, floppy_image::MFM,
- 2000,
- 9, 40, 2,
- 512, {},
- 1, {},
- 80, 50, 22, 80
- },
- {
- floppy_image::FF_525, floppy_image::DSDD, floppy_image::MFM,
- 2000,
- 8, 40, 2,
- 512, {},
- 1, {},
- 80, 50, 22, 80
- },
- {}
-};
-
-const floppy_format_type FLOPPY_DMV_FORMAT = &floppy_image_format_creator<dmv_format>;
diff --git a/src/emu/bus/dmv/dmv_dsk.h b/src/emu/bus/dmv/dmv_dsk.h
deleted file mode 100644
index 0e505b37d87..00000000000
--- a/src/emu/bus/dmv/dmv_dsk.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/*********************************************************************
-
- formats/dmv_dsk.h
-
- NCR Decision Mate V format
-
-*********************************************************************/
-
-#ifndef DMV_DSK_H_
-#define DMV_DSK_H_
-
-#include "upd765_dsk.h"
-
-class dmv_format : public upd765_format {
-public:
- dmv_format();
-
- virtual const char *name() const;
- virtual const char *description() const;
- virtual const char *extensions() const;
-
-private:
- static const format formats[];
-};
-
-extern const floppy_format_type FLOPPY_DMV_FORMAT;
-
-#endif /* DMV_DSK_H_ */