| 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 |
| r242923 | r242924 | |
|---|---|---|
| 424 | 424 | WRITE8_MEMBER(ngen_state::fdc_control_w) |
| 425 | 425 | { |
| 426 | 426 | 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(); | |
| 430 | 431 | } |
| 431 | 432 | |
| 432 | 433 | // Hard disk control register |
| https://github.com/mamedev/mame/commit/c11ba8606d1083aefd5f0ebe7a4a0a4ac691ecc0 |
| Previous | 199869 Revisions | Next |