mirror of
https://github.com/holub/mame
synced 2025-05-22 13:48:55 +03:00
(MESS) excalibur : more unused code (nw)
This commit is contained in:
parent
d59a524856
commit
3b4803da9a
@ -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>;
|
|
@ -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
|
|
@ -148,7 +148,6 @@ FORMATSOBJS = \
|
|||||||
$(LIBOBJ)/formats/ep64_dsk.o \
|
$(LIBOBJ)/formats/ep64_dsk.o \
|
||||||
$(LIBOBJ)/formats/esq8_dsk.o \
|
$(LIBOBJ)/formats/esq8_dsk.o \
|
||||||
$(LIBOBJ)/formats/esq16_dsk.o \
|
$(LIBOBJ)/formats/esq16_dsk.o \
|
||||||
$(LIBOBJ)/formats/excali64_dsk.o\
|
|
||||||
$(LIBOBJ)/formats/fc100_cas.o \
|
$(LIBOBJ)/formats/fc100_cas.o \
|
||||||
$(LIBOBJ)/formats/fdi_dsk.o \
|
$(LIBOBJ)/formats/fdi_dsk.o \
|
||||||
$(LIBOBJ)/formats/fdd_dsk.o \
|
$(LIBOBJ)/formats/fdd_dsk.o \
|
||||||
|
Loading…
Reference in New Issue
Block a user