trunk/src/mess/machine/bbc.c
| r249150 | r249151 | |
| 1563 | 1563 | //logerror("Drive control %d \n", data); |
| 1564 | 1564 | |
| 1565 | 1565 | // bit 2: reset |
| 1566 | | if (!BIT(data, 5)) m_wd1770->reset(); |
| 1566 | if (!BIT(data, 2)) m_wd1770->reset(); |
| 1567 | 1567 | |
| 1568 | 1568 | // bit 0, 1, 3: drive select |
| 1569 | 1569 | if (BIT(data, 0)) floppy = m_wd1770->subdevice<floppy_connector>("0")->get_device(); |
| r249150 | r249151 | |
| 1589 | 1589 | //logerror("Drive control %d \n", data); |
| 1590 | 1590 | |
| 1591 | 1591 | // bit 2: reset |
| 1592 | | if (!BIT(data, 5)) m_wd1772->reset(); |
| 1592 | if (!BIT(data, 2)) m_wd1772->reset(); |
| 1593 | 1593 | |
| 1594 | 1594 | // bit 0, 1, 3: drive select |
| 1595 | 1595 | if (BIT(data, 0)) floppy = m_wd1772->subdevice<floppy_connector>("0")->get_device(); |