mirror of
https://github.com/holub/mame
synced 2025-05-23 06:08:48 +03:00

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.
34 lines
651 B
C++
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__
|