diff options
| author | 2014-12-27 12:43:23 +1100 | |
|---|---|---|
| committer | 2014-12-27 12:43:23 +1100 | |
| commit | 3b4803da9a482ffdcbb1394a3e2106b2b70d5f84 (patch) | |
| tree | 0068b7f8f4c0d21e52e0e30568b217aff1c83c7a | |
| parent | d59a524856c0a62811a3b5a276139273929ac2d0 (diff) | |
(MESS) excalibur : more unused code (nw)
| -rw-r--r-- | src/lib/formats/excali64_dsk.c | 42 | ||||
| -rw-r--r-- | src/lib/formats/excali64_dsk.h | 28 | ||||
| -rw-r--r-- | src/lib/lib.mak | 1 |
3 files changed, 0 insertions, 71 deletions
diff --git a/src/lib/formats/excali64_dsk.c b/src/lib/formats/excali64_dsk.c deleted file mode 100644 index 5de86815099..00000000000 --- a/src/lib/formats/excali64_dsk.c +++ /dev/null @@ -1,42 +0,0 @@ -// license:BSD-3-Clause -// copyright-holders:Olivier Galibert -/********************************************************************* - - formats/excali64_dsk.c - - Excalibur 64 disk image format - -*********************************************************************/ - -#include "emu.h" -#include "formats/excali64_dsk.h" - -excali64_format::excali64_format() : wd177x_format(formats) -{ -} - -const char *excali64_format::name() const -{ - return "excali64"; -} - -const char *excali64_format::description() const -{ - return "Excalibur 64 disk image"; -} - -const char *excali64_format::extensions() const -{ - return "raw"; -} - -// Unverified gap sizes -const excali64_format::format excali64_format::formats[] = { - { /* 800K 19cm double density */ - floppy_image::FF_525, floppy_image::DSDD, floppy_image::MFM, - 2000, 5, 80, 2, 1024, {}, 1, {}, 100, 22, 84 - }, - {} -}; - -const floppy_format_type FLOPPY_EXCALI64_FORMAT = &floppy_image_format_creator<excali64_format>; diff --git a/src/lib/formats/excali64_dsk.h b/src/lib/formats/excali64_dsk.h deleted file mode 100644 index 37b62265c1c..00000000000 --- a/src/lib/formats/excali64_dsk.h +++ /dev/null @@ -1,28 +0,0 @@ -/********************************************************************* - - formats/excali64_dsk.h - - Excalibur 64 disk image format - -*********************************************************************/ - -#ifndef EXCALI64_DSK_H_ -#define EXCALI64_DSK_H_ - -#include "wd177x_dsk.h" - -class excali64_format : public wd177x_format { -public: - excali64_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_EXCALI64_FORMAT; - -#endif diff --git a/src/lib/lib.mak b/src/lib/lib.mak index c95cfe2ecfc..34ba901389d 100644 --- a/src/lib/lib.mak +++ b/src/lib/lib.mak @@ -148,7 +148,6 @@ FORMATSOBJS = \ $(LIBOBJ)/formats/ep64_dsk.o \ $(LIBOBJ)/formats/esq8_dsk.o \ $(LIBOBJ)/formats/esq16_dsk.o \ - $(LIBOBJ)/formats/excali64_dsk.o\ $(LIBOBJ)/formats/fc100_cas.o \ $(LIBOBJ)/formats/fdi_dsk.o \ $(LIBOBJ)/formats/fdd_dsk.o \ |
