summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2012-11-16 15:18:01 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2012-11-16 15:18:01 +0000
commit2523b1f17b652b46ffc5348488eedc0580928b93 (patch)
tree186f2957cf444c05807262fe3719096378bfa731
parent3976eb8144d88a36f4cb66e5e87a9ff90f4fe77e (diff)
Fixed Epson QX-10 floppy image types, images doesn't load tho ...
-rw-r--r--src/mess/drivers/qx10.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mess/drivers/qx10.c b/src/mess/drivers/qx10.c
index 7b739d9b71b..893e755187b 100644
--- a/src/mess/drivers/qx10.c
+++ b/src/mess/drivers/qx10.c
@@ -42,6 +42,8 @@
#include "machine/upd765.h"
#include "machine/ram.h"
#include "formats/mfi_dsk.h"
+#include "formats/d88_dsk.h"
+#include "formats/imd_dsk.h"
#define MAIN_CLK 15974400
@@ -304,8 +306,10 @@ WRITE8_MEMBER( qx10_state::cmos_sel_w )
*/
static const floppy_format_type qx10_floppy_formats[] = {
+ FLOPPY_D88_FORMAT,
+ FLOPPY_IMD_FORMAT,
FLOPPY_MFI_FORMAT,
- NULL
+ NULL // TODO: TD0 format
};
static SLOT_INTERFACE_START( qx10_floppies )