summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu
diff options
context:
space:
mode:
author Wilbert Pol <wilbert@jdg.info>2014-05-15 19:03:41 +0000
committer Wilbert Pol <wilbert@jdg.info>2014-05-15 19:03:41 +0000
commitd976c005d7c4062c85c1458a78aba9466fe49062 (patch)
tree77540efc4edc15007cd30757d8ec5e2d3e1892ce /src/emu
parentffd0b5f2ad3ffeefd77d088575e8f9805c448c57 (diff)
(MESS) msx.c: Fixed a few floppy regressions (nw)
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/bus/msx_slot/disk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/bus/msx_slot/disk.c b/src/emu/bus/msx_slot/disk.c
index 3995bbc73e6..02f16cb7c4b 100644
--- a/src/emu/bus/msx_slot/disk.c
+++ b/src/emu/bus/msx_slot/disk.c
@@ -291,7 +291,7 @@ void msx_slot_disk2_device::set_control(UINT8 data)
if (m_floppy)
{
m_floppy->mon_w((m_control & 0x08) ? 0 : 1);
- m_floppy->ss_w((m_control & 0x04) ? 0 : 1);
+ m_floppy->ss_w((m_control & 0x04) ? 1 : 0);
}
m_fdc->set_floppy(m_floppy);