mirror of
https://github.com/holub/mame
synced 2025-05-23 14:19:01 +03:00
56 lines
1017 B
C
56 lines
1017 B
C
// license:BSD-3-Clause
|
|
// copyright-holders:Olivier Galibert
|
|
/*********************************************************************
|
|
|
|
formats/dmv_dsk.c
|
|
|
|
NCR Decision Mate V format
|
|
|
|
*********************************************************************/
|
|
|
|
#include <assert.h>
|
|
|
|
#include "formats/dmv_dsk.h"
|
|
|
|
dmv_format::dmv_format() : upd765_format(formats)
|
|
{
|
|
}
|
|
|
|
const char *dmv_format::name() const
|
|
{
|
|
return "dmv";
|
|
}
|
|
|
|
const char *dmv_format::description() const
|
|
{
|
|
return "Decision Mate V disk image";
|
|
}
|
|
|
|
const char *dmv_format::extensions() const
|
|
{
|
|
return "img";
|
|
}
|
|
|
|
// gap size from hardware reference manual
|
|
const dmv_format::format dmv_format::formats[] = {
|
|
{
|
|
floppy_image::FF_525, floppy_image::DSDD, floppy_image::MFM,
|
|
2000,
|
|
9, 40, 2,
|
|
512, {},
|
|
1, {},
|
|
80, 50, 22, 80
|
|
},
|
|
{
|
|
floppy_image::FF_525, floppy_image::DSDD, floppy_image::MFM,
|
|
2000,
|
|
8, 40, 2,
|
|
512, {},
|
|
1, {},
|
|
80, 50, 22, 80
|
|
},
|
|
{}
|
|
};
|
|
|
|
const floppy_format_type FLOPPY_DMV_FORMAT = &floppy_image_format_creator<dmv_format>;
|