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

43 lines
923 B
C

// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
/*********************************************************************
formats/applix_dsk.c
Applix disk image format
*********************************************************************/
#include "emu.h"
#include "formats/applix_dsk.h"
applix_format::applix_format() : wd177x_format(formats)
{
}
const char *applix_format::name() const
{
return "applix";
}
const char *applix_format::description() const
{
return "Applix disk image";
}
const char *applix_format::extensions() const
{
return "dsk";
}
// Unverified gap sizes
const applix_format::format applix_format::formats[] = {
{ /* 800K 3 1/2 inch double density */
floppy_image::FF_35, floppy_image::DSDD, floppy_image::MFM,
2000, 5, 80, 2, 1024, {}, 1, {}, 100, 22, 84
},
{}
};
const floppy_format_type FLOPPY_APPLIX_FORMAT = &floppy_image_format_creator<applix_format>;