msx_dsk: remove legacy format

This commit is contained in:
Dirk Best 2015-06-08 12:18:45 +02:00
parent b749e0a2f7
commit 2cc9da11de
2 changed files with 2 additions and 31 deletions

View File

@ -8,27 +8,7 @@
*********************************************************************/
#include <assert.h>
#include "formats/msx_dsk.h"
#include "formats/basicdsk.h"
LEGACY_FLOPPY_OPTIONS_START(msx)
LEGACY_FLOPPY_OPTION(msx, "dsk", "MSX SS", basicdsk_identify_default, basicdsk_construct_default, NULL,
HEADS([1])
TRACKS([80])
SECTORS([9])
SECTOR_LENGTH([512])
FIRST_SECTOR_ID([1]))
LEGACY_FLOPPY_OPTION(msx, "dsk", "MSX DS", basicdsk_identify_default, basicdsk_construct_default, NULL,
HEADS([2])
TRACKS([80])
SECTORS([9])
SECTOR_LENGTH([512])
FIRST_SECTOR_ID([1]))
LEGACY_FLOPPY_OPTIONS_END
/********************************************************************/
#include "msx_dsk.h"
//msx_format::msx_format() : wd177x_format(formats)
msx_format::msx_format() : upd765_format(formats)

View File

@ -11,15 +11,7 @@
#ifndef MSX_DSK_H
#define MSX_DSK_H
#include "flopimg.h"
/**************************************************************************/
LEGACY_FLOPPY_OPTIONS_EXTERN(msx);
/**************************************************************************/
#include "wd177x_dsk.h"
//#include "wd177x_dsk.h"
#include "upd765_dsk.h"
//class msx_format : public wd177x_format {
@ -37,5 +29,4 @@ private:
extern const floppy_format_type FLOPPY_MSX_FORMAT;
#endif /* MSX_DSK_H */