summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2020-03-02 14:57:30 -0500
committer GitHub <noreply@github.com>2020-03-02 14:57:30 -0500
commit3d5a9dbc4fb6b1e7d23aef7a5236ad329244a68e (patch)
tree9a22dc5e231bc70c22dd7499c650e34d5f31f8a6 /src/devices
parentf1e24a07849206eaa125b8556ff0b295bc8dd088 (diff)
parentc155d424ac66496b15055ffacb9e9731102a454a (diff)
Merge pull request #6385 from shattered/_ad71766bb26
ibmxdf_dsk: IBM Extended Density Format support (nw)
Diffstat (limited to 'src/devices')
-rw-r--r--src/devices/bus/isa/fdc.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/devices/bus/isa/fdc.cpp b/src/devices/bus/isa/fdc.cpp
index 3c601e42ce2..3ec6db240d1 100644
--- a/src/devices/bus/isa/fdc.cpp
+++ b/src/devices/bus/isa/fdc.cpp
@@ -12,11 +12,13 @@
#include "machine/pc_fdc.h"
#include "formats/pc_dsk.h"
#include "formats/naslite_dsk.h"
+#include "formats/ibmxdf_dsk.h"
FLOPPY_FORMATS_MEMBER( isa8_fdc_device::floppy_formats )
FLOPPY_PC_FORMAT,
- FLOPPY_NASLITE_FORMAT
+ FLOPPY_NASLITE_FORMAT,
+ FLOPPY_IBMXDF_FORMAT
FLOPPY_FORMATS_END
static void pc_dd_floppies(device_slot_interface &device)