Previous 199869 Revisions Next

r40639 Monday 7th September, 2015 at 23:50:58 UTC by Nigel Barnes
bbc: fixed wd177x reset on master series (nw)
[src/mess/machine]bbc.c

trunk/src/mess/machine/bbc.c
r249150r249151
15631563   //logerror("Drive control %d \n", data);
15641564
15651565   // bit 2: reset
1566   if (!BIT(data, 5)) m_wd1770->reset();
1566   if (!BIT(data, 2)) m_wd1770->reset();
15671567
15681568   // bit 0, 1, 3: drive select
15691569   if (BIT(data, 0)) floppy = m_wd1770->subdevice<floppy_connector>("0")->get_device();
r249150r249151
15891589   //logerror("Drive control %d \n", data);
15901590
15911591   // bit 2: reset
1592   if (!BIT(data, 5)) m_wd1772->reset();
1592   if (!BIT(data, 2)) m_wd1772->reset();
15931593
15941594   // bit 0, 1, 3: drive select
15951595   if (BIT(data, 0)) floppy = m_wd1772->subdevice<floppy_connector>("0")->get_device();


Previous 199869 Revisions Next


© 1997-2024 The MAME Team