summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author r09 <rzero9@gmail.com>2022-05-22 19:56:37 +0200
committer Vas Crabb <vas@vastheman.com>2022-05-23 05:10:33 +1000
commit2692bded6e71a68f135b6a0a7e9243d939c7908f (patch)
tree5bb50bcb49f4c7b919e9ff9cde0e5cb70cd318af
parentb9e9b2555af55023dfedbf5289abe961c8783e86 (diff)
bus/iee488/hp9122c.cpp: Added default MFM floppy image formats, (#9811)
This allows HP 9000/3xx machines to actually use floppy images from the software list.
-rw-r--r--src/devices/bus/ieee488/hp9122c.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/ieee488/hp9122c.cpp b/src/devices/bus/ieee488/hp9122c.cpp
index 0c6788c213d..2a001d2a4d0 100644
--- a/src/devices/bus/ieee488/hp9122c.cpp
+++ b/src/devices/bus/ieee488/hp9122c.cpp
@@ -393,7 +393,7 @@ void hp9122c_device::device_add_mconfig(machine_config &config)
m_i8291a->int_write().set(FUNC(hp9122c_device::i8291a_int_w));
m_i8291a->dreq_write().set(FUNC(hp9122c_device::i8291a_dreq_w));
- FLOPPY_CONNECTOR(config, "floppy0" , hp9122c_floppies , "35hd" , nullptr, true).enable_sound(true);
- FLOPPY_CONNECTOR(config, "floppy1" , hp9122c_floppies , "35hd" , nullptr, true).enable_sound(true);
+ FLOPPY_CONNECTOR(config, "floppy0" , hp9122c_floppies , "35hd" , floppy_image_device::default_mfm_floppy_formats, true).enable_sound(true);
+ FLOPPY_CONNECTOR(config, "floppy1" , hp9122c_floppies , "35hd" , floppy_image_device::default_mfm_floppy_formats, true).enable_sound(true);
config.set_default_layout(layout_hp9122c);
}