mirror of
https://github.com/holub/mame
synced 2025-05-05 22:04:43 +03:00
44 lines
919 B
C
44 lines
919 B
C
// license:BSD-3-Clause
|
|
// copyright-holders:Robbbert
|
|
/*********************************************************************
|
|
|
|
formats/applix_dsk.c
|
|
|
|
Applix disk image format
|
|
|
|
*********************************************************************/
|
|
|
|
#include <assert.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 "raw";
|
|
}
|
|
|
|
// 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>;
|