mame/src/lib/formats/guab_dsk.h
Dirk Best 08c7ed6ffb guab: Updated driver to use the standard wd floppy controller.
This also means that it now uses the software list system instead of
loading the floppy disk image into a memory region. To run the driver
use: "mame guab -flop guab3" now. You may also just start the driver,
then choose a floppy disk image from the builtin file manager.
2015-07-09 12:58:25 +02:00

34 lines
651 B
C++

// license:GPL-2.0+
// copyright-holders:Dirk Best
/***************************************************************************
JPM Give us a Break
Disk image format
***************************************************************************/
#pragma once
#ifndef __GUAB_DSK_H__
#define __GUAB_DSK_H__
#include "wd177x_dsk.h"
class guab_format : public wd177x_format
{
public:
guab_format();
virtual const char *name() const;
virtual const char *description() const;
virtual const char *extensions() const;
private:
static const format formats[];
};
extern const floppy_format_type FLOPPY_GUAB_FORMAT;
#endif // __GUAB_DSK_H__