diff options
| author | 2016-05-21 17:14:47 -0500 | |
|---|---|---|
| committer | 2016-05-21 17:14:47 -0500 | |
| commit | d6dc289559928ef07fb0035db7be9d71fe1ac975 (patch) | |
| tree | aeeafd60ad8cdd8e43d5ad7b4d9250cf883e2d77 | |
| parent | 19258d7914f50cfea2c9079dc712346429f4f1cd (diff) | |
itt3030: invert ready (nw)
| -rw-r--r-- | src/mame/drivers/itt3030.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/itt3030.cpp b/src/mame/drivers/itt3030.cpp index 1bd382b6350..4fc7244df12 100644 --- a/src/mame/drivers/itt3030.cpp +++ b/src/mame/drivers/itt3030.cpp @@ -415,9 +415,9 @@ READ8_MEMBER(itt3030_state::fdc_stat_r) res = m_fdc_drq ? 0x80 : 0x00; res |= m_fdc_irq ? 0x40 : 0x00; res |= m_fdc_hld ? 0x00 : 0x20; - if (floppy3) res |= floppy3->ready_r() ? 0x10 : 0; - if (floppy2) res |= floppy2->ready_r() ? 0x08 : 0; - if (floppy1) res |= floppy1->ready_r() ? 0x04 : 0; + if (floppy3) res |= !floppy3->ready_r() ? 0x10 : 0; + if (floppy2) res |= !floppy2->ready_r() ? 0x08 : 0; + if (floppy1) res |= !floppy1->ready_r() ? 0x04 : 0; if (m_curfloppy) res |= m_curfloppy->wpt_r() ? 0x02 : 0; return res; |
