summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/tim011_dsk.cpp
blob: 0afa2bb82d7dc84d826fdcd44d73400d56ed8a88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// license:BSD-3-Clause
// copyright-holders:Miodrag Milanovic
/*********************************************************************

    formats/tim011_dsk.cpp

    TIM 011 format

*********************************************************************/

#include "formats/tim011_dsk.h"

tim011_format::tim011_format() : upd765_format(formats)
{
}

const char *tim011_format::name() const noexcept
{
	return "tim011";
}

const char *tim011_format::description() const noexcept
{
	return "TIM 011 disk image";
}

const char *tim011_format::extensions() const noexcept
{
	return "img";
}

// Unverified gap sizes.
const tim011_format::format tim011_format::formats[] = {
	{
		floppy_image::FF_35, floppy_image::DSDD, floppy_image::MFM,
		2000,
		5, 80, 2,
		1024, {},
		17, {},
		80, 50, 22, 80
	},
	{}
};

const tim011_format FLOPPY_TIM011_FORMAT;
00'>2018-04-031-3/+3 * galaga.cpp, pacland.cpp, tceptor.cpp: Replace MCFG_CPU_VBLANK_INT with line c... AJR2018-03-281-8/+4 * Address maps macros removal, pass 1 [O. Galibert] Olivier Galibert2018-03-141-34/+36 * srcclean (nw) Vas Crabb2018-02-251-2/+2 * API change: Memory maps are now methods of the owner class [O. Galibert] Olivier Galibert2018-02-121-3/+3 * pacland.cpp: fix missing new line at the end of file (nw) Ivan Vangelista2018-02-061-1/+1 * new working clone addedPac-Land (Bally-Midway) [Andrea Palazzetti] Andrea Palazzetti2018-02-061-0/+34 * xtal.h is dead, long live to xtal.cpp [O. Galibert] Olivier Galibert2018-01-231-4/+4 * API Change: Machine configs are now a method of the owner class, and the prot... Olivier Galibert2018-01-171-1/+1 * Revert "Revert "Merge branch 'master' of https://github.com/mamedev/mame"" Firehawke2017-12-131-1/+1 * Revert "Merge branch 'master' of https://github.com/mamedev/mame" Firehawke2017-12-131-1/+1 * m6809: Start resolving the great device type/clock divider mix-up AJR2017-12-081-1/+1 * Quick and dirty split of most MC6801/MC6803/HD63701 features from base M6800 ... AJR2017-05-261-1/+1 * Move static data out of devices into the device types. This is a significant... Vas Crabb2017-05-141-6/+6 * Self-registering devices prep: Vas Crabb2017-02-271-1/+3 * Make watchdog timer a separate device AJR2016-04-301-2/+5 * make output be part of driver_device (nw) Miodrag Milanovic2016-01-101-2/+2 * modernize output_manager (nw) Miodrag Milanovic2016-01-101-2/+2 * modernized bookkeeping manager (nw) Miodrag Milanovic2016-01-101-3/+3