mirror of
https://github.com/holub/mame
synced 2025-05-22 13:48:55 +03:00
44 lines
950 B
C++
44 lines
950 B
C++
// license:BSD-3-Clause
|
|
// copyright-holders:Robbbert
|
|
/*********************************************************************
|
|
|
|
formats/excali64_dsk.c
|
|
|
|
Excalibur 64 disk image format
|
|
|
|
*********************************************************************/
|
|
|
|
#include <assert.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>;
|