diff options
author | 2015-06-08 12:18:45 +0200 | |
---|---|---|
committer | 2015-06-08 12:18:45 +0200 | |
commit | 2cc9da11deb0b82cbfb19a7f976b55d9593f98ad (patch) | |
tree | 5004804946d57a1500fc41f06b672b4e27804bb1 /src | |
parent | b749e0a2f7a48e5dafc3e9df8a37c305dbe56c40 (diff) |
msx_dsk: remove legacy format
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/formats/msx_dsk.c | 22 | ||||
-rw-r--r-- | src/lib/formats/msx_dsk.h | 11 |
2 files changed, 2 insertions, 31 deletions
diff --git a/src/lib/formats/msx_dsk.c b/src/lib/formats/msx_dsk.c index 815c6fa5e2e..ab0b5bab529 100644 --- a/src/lib/formats/msx_dsk.c +++ b/src/lib/formats/msx_dsk.c @@ -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) diff --git a/src/lib/formats/msx_dsk.h b/src/lib/formats/msx_dsk.h index 8e26ec93128..94a5411c51a 100644 --- a/src/lib/formats/msx_dsk.h +++ b/src/lib/formats/msx_dsk.h @@ -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 */ |