From 3b4803da9a482ffdcbb1394a3e2106b2b70d5f84 Mon Sep 17 00:00:00 2001 From: Robert Date: Sat, 27 Dec 2014 12:43:23 +1100 Subject: [PATCH] (MESS) excalibur : more unused code (nw) --- src/lib/formats/excali64_dsk.c | 42 ---------------------------------- src/lib/formats/excali64_dsk.h | 28 ----------------------- src/lib/lib.mak | 1 - 3 files changed, 71 deletions(-) delete mode 100644 src/lib/formats/excali64_dsk.c delete mode 100644 src/lib/formats/excali64_dsk.h 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; 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 \