diff options
| author | 2012-12-17 07:22:20 +0000 | |
|---|---|---|
| committer | 2012-12-17 07:22:20 +0000 | |
| commit | 436d2f757f0c32573ea41013e8b10ca07ed6fc08 (patch) | |
| tree | 77fc28a1edb618f19ae38071ed1b7c3316d41f5e /src/mess/machine/b2m.c | |
| parent | 449da4bc62a76ac132892d0f9e7e506fdf5eb586 (diff) | |
Cleanups and version bumpmame0147u4
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); } } |
