summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/sg1000.c
diff options
context:
space:
mode:
author Sandro Ronco <sronco@users.noreply.github.com>2012-10-28 12:27:49 +0000
committer Sandro Ronco <sronco@users.noreply.github.com>2012-10-28 12:27:49 +0000
commit845c07b13619f1fe2ed286aab4fcb8afce0e121c (patch)
treedfe066343ade1c3c0b9bf2adbf95b1816b1df64d /src/mess/drivers/sg1000.c
parentd24e75d58e2b0d6148fc4e177d2ce1b070275561 (diff)
(MESS) Fixed bw12, tandy2k, nanos, specpls3 and sf7000 regressions. (nw)
Diffstat (limited to 'src/mess/drivers/sg1000.c')
-rw-r--r--src/mess/drivers/sg1000.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mess/drivers/sg1000.c b/src/mess/drivers/sg1000.c
index c011a3a1de9..43ad7ebf821 100644
--- a/src/mess/drivers/sg1000.c
+++ b/src/mess/drivers/sg1000.c
@@ -919,8 +919,7 @@ WRITE8_MEMBER( sf7000_state::ppi_pc_w )
*/
/* floppy motor */
- floppy_mon_w(m_floppy0, BIT(data, 1));
- floppy_drive_set_ready_state(m_floppy0, 1, 1);
+ m_floppy0->mon_w(BIT(data, 1));
/* FDC terminal count */
m_fdc->tc_w(BIT(data, 2));