mame/src/lib/formats/apollo_dsk.c
Aaron Giles 71fbb5edc2 Added license tags to a few more files. Also converted many of OG's
BSD licenses to tags since when he copied & pasted them he forgot to
remove one instance of my name, which I caught while searching. ;-)
2013-10-16 09:38:09 +00:00

47 lines
897 B
C

// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
/*********************************************************************
formats/apollo_dsk.c
apollo format
*********************************************************************/
#include "emu.h"
#include "formats/apollo_dsk.h"
apollo_format::apollo_format() : upd765_format(formats)
{
}
const char *apollo_format::name() const
{
return "apollo";
}
const char *apollo_format::description() const
{
return "APOLLO disk image";
}
const char *apollo_format::extensions() const
{
return "afd";
}
// Unverified gap sizes
const apollo_format::format apollo_format::formats[] = {
{
floppy_image::FF_525, floppy_image::DSHD, floppy_image::MFM,
1200, // 1us, 360rpm
8, 77, 2,
1024, {},
1, {},
80, 50, 22, 80
},
{}
};
const floppy_format_type FLOPPY_APOLLO_FORMAT = &floppy_image_format_creator<apollo_format>;