heathzenith/z37_fdc.cpp: Fix HDOS 2.0 INIT (disk formatting) (#12535)

This commit is contained in:
Mark Garlanger 2024-07-04 14:11:14 -05:00 committed by GitHub
parent 5a863b3832
commit bcb1756ebc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -209,6 +209,8 @@ void heath_z37_fdc_device::device_add_mconfig(machine_config &config)
FD1797(config, m_fdc, 16_MHz_XTAL / 16);
m_fdc->intrq_wr_callback().set(FUNC(heath_z37_fdc_device::set_irq));
m_fdc->drq_wr_callback().set(FUNC(heath_z37_fdc_device::set_drq));
// Z-89-37 schematics show the ready line tied high.
m_fdc->set_force_ready(true);
FLOPPY_CONNECTOR(config, m_floppies[0], z37_floppies, "qd", floppy_image_device::default_mfm_floppy_formats);
m_floppies[0]->enable_sound(true);