summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/pc98_dsk.h
blob: d948b19ddccb782825100fa748526d55d5df2415 (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
// license:BSD-3-Clause
// copyright-holders:Angelo Salese
/*********************************************************************

    formats/pc98_dsk.h

    PC disk images

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

#ifndef PC98_DSK_H
#define PC98_DSK_H

#include "flopimg.h"
#include "upd765_dsk.h"

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


class pc98_format : public upd765_format
{
public:
	pc98_format();

	virtual const char *name() const override;
	virtual const char *description() const override;
	virtual const char *extensions() const override;

private:
	static const format formats[];
};

extern const floppy_format_type FLOPPY_PC98_FORMAT;

#endif /* PC_DSK_H */
ver' src='//www.gravatar.com/avatar/12dc87757ac3c5c83f314738ccdf5352?s=128&d=retro' /> Ivan Vangelista2020-06-151-5/+5 * spec128.cpp remove old hacks, misc minor notes (nw) MetalliC2020-06-041-16/+10 * ZX-Spectrum Beta-disk interfaces improvements, all V2-V5 models should work f... MetalliC2020-05-311-1/+3 * appease vs2019_clang with llvm 10.0 smf-2020-04-251-1/+1 * Spring cleaning: Vas Crabb2019-11-011-1/+1 * push forward with the spectrum betadisc stuff, now system at least boots with... David Haywood2019-08-311-4/+4 * add a 'post opcode fetch' to spectrum expansion bus so that interface 1 enabl... DavidHaywood2019-07-291-0/+9 * (nw) Clean up the mess on master Vas Crabb2019-03-261-27/+36 * Revert "conflict resolution (nw)" andreasnaive2019-03-251-36/+27 * spec128: Improved compatibility with ROM swapping expansion devices in 128 mo... Nigel Barnes2019-03-221-3/+17 * spectrum: Improved expansion interface to allow devices to act on opcode fetc... Nigel Barnes2019-03-101-2/+3 * bus/spectrum: Simplify read/write handlers (nw) AJR2019-03-091-2/+2 * bus/cgenie/expansion, bus/einstein/pipe, bus/nasbus, bus/spectrum, bus/vtech:... AJR2019-02-251-11/+6 * mame\drivers: removed MCFG and MACHINE_CONFIG macros from most drivers starti... Ivan Vangelista2019-02-191-12/+11 * emu\softlist_dev: removed MCFG macros (nw) Ivan Vangelista2019-01-301-1/+1 * src/mame: removed all instances of MCFG_DEVICE_REMOVE in the mame part of the... Ivan Vangelista2019-01-291-1/+1 * get rid of the rest of the digfx MCFG as well (nw) Vas Crabb2019-01-071-1/+1 * ay8910: penultimate batch of MCFG removal (nw) Ivan Vangelista2018-11-131-2/+1 * spectrum: Removed machine().device from expansion devices (nw) Nigel Barnes2018-09-221-5/+11 * -ram_device: MCFG removal, nw mooglyguy2018-08-161-2/+1 * as if millions of this pointers suddenly cried out in terror, and were sudden... Vas Crabb2018-06-081-4/+4 * Move the +1 to the proper place in the ROM BIOS macros - that's been Vas Crabb2018-05-291-17/+17 * Revert "- Removed MACHINE/SOUND/VIDEO _START/_RESET macros. This has the side... Vas Crabb2018-05-161-4/+4 * - Removed MACHINE/SOUND/VIDEO _START/_RESET macros. This has the side effect ... MooglyGuy2018-05-161-4/+4 * Removed DRIVER_INIT-related macros, made driver init entry in GAME/COMP/CONS ... MooglyGuy2018-05-131-5/+5 * Streamline machine configuration macros - everyone's a device edition. Vas Crabb2018-05-061-5/+5 * Address maps macros removal, pass 1 [O. Galibert] Olivier Galibert2018-03-141-14/+16 * gba_lcd, spectrum, etc.: Convenient first_screen removal (nw) AJR2018-03-031-1/+1 * (nw) screw you macros and the horse you rode in on Vas Crabb2018-02-141-1/+2 * API change: Memory maps are now methods of the owner class [O. Galibert] Olivier Galibert2018-02-121-2/+2 * Misc stuff (nw) Olivier Galibert2018-01-271-1/+1 * API Change: Machine configs are now a method of the owner class, and the prot... Olivier Galibert2018-01-171-1/+1 * spectrum: Added expansion slot, and devices: Nigel Barnes2017-09-211-23/+38 * Move static data out of devices into the device types. This is a significant... Vas Crabb2017-05-141-5/+5