Previous 199869 Revisions Next

r34412 Friday 16th January, 2015 at 02:01:13 UTC by Barry Rodewald
ngen: fix floppy disk reading
[src/mess/drivers]ngen.c

trunk/src/mess/drivers/ngen.c
r242923r242924
424424WRITE8_MEMBER(ngen_state::fdc_control_w)
425425{
426426   m_fdc->set_floppy(m_fd0->get_device());
427   m_fd0->get_device()->mon_w((~data) & 0x04);
428   m_fd0->get_device()->ss_w(~data & 0x20);
429   m_fdc->soft_reset();
427   m_fd0->get_device()->mon_w(~data & 0x04);
428   m_fd0->get_device()->ss_w(data & 0x20);
429   if(~data & 0x80)
430      m_fdc->soft_reset();
430431}
431432
432433// Hard disk control register


Previous 199869 Revisions Next


© 1997-2024 The MAME Team