diff options
Diffstat (limited to 'src/mess/machine/b2m.c')
| -rw-r--r-- | src/mess/machine/b2m.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mess/machine/b2m.c b/src/mess/machine/b2m.c index bf319478434..15b2a6b7976 100644 --- a/src/mess/machine/b2m.c +++ b/src/mess/machine/b2m.c @@ -224,17 +224,17 @@ WRITE8_MEMBER(b2m_state::b2m_ext_8255_portc_w) if (m_b2m_drive!=drive) { m_b2m_drive = drive; } - + if (m_b2m_side!=side) { m_b2m_side = side; - floppy->ss_w(side); + floppy->ss_w(side); } /* - When bit 5 is set CPU is in HALT state and stay there until - DRQ is triggered from floppy side - */ - - if ((data & 0xf0)==0x20) { + When bit 5 is set CPU is in HALT state and stay there until + DRQ is triggered from floppy side + */ + + if ((data & 0xf0)==0x20) { m_maincpu->set_input_line(INPUT_LINE_HALT, ASSERT_LINE); } } |
