mame/src/lib/formats/tvc_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

48 lines
1005 B
C

// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
/*********************************************************************
formats/tvc_dsk.c
tvc format
*********************************************************************/
#include "emu.h"
#include "formats/tvc_dsk.h"
tvc_format::tvc_format() : wd177x_format(formats)
{
}
const char *tvc_format::name() const
{
return "tvc";
}
const char *tvc_format::description() const
{
return "Videoton TVC HBF disk image";
}
const char *tvc_format::extensions() const
{
return "img,dsk";
}
// Unverified gap sizes
const tvc_format::format tvc_format::formats[] =
{
{ // 720K 5.25 inch
floppy_image::FF_525, floppy_image::DSQD, floppy_image::MFM,
2000, 9, 80, 2, 512, {}, 1, {}, 100, 22, 20
},
{ // 360K 5.25 inch
floppy_image::FF_525, floppy_image::SSQD, floppy_image::MFM,
2000, 9, 80, 1, 512, {}, 1, {}, 100, 22, 20
},
{}
};
const floppy_format_type FLOPPY_TVC_FORMAT = &floppy_image_format_creator<tvc_format>;