mirror of
https://github.com/holub/mame
synced 2025-04-26 02:07:14 +03:00
Fixed crash in mbee128 reported by Tafoid (nw)
This commit is contained in:
parent
7680a24bb9
commit
ea31f80c98
@ -136,8 +136,11 @@ WRITE8_MEMBER( mbee_state::mbee_fdc_motor_w )
|
||||
m_fdc->set_floppy(floppy);
|
||||
m_fdc->dden_w(!BIT(data, 3)); // /Q output of ic29
|
||||
|
||||
floppy->mon_w(0); // motor on
|
||||
floppy->ss_w(BIT(data, 2)); // inverted on the board
|
||||
if (floppy)
|
||||
{
|
||||
floppy->mon_w(0); // motor on
|
||||
floppy->ss_w(BIT(data, 2)); // inverted on the board
|
||||
}
|
||||
}
|
||||
|
||||
/***********************************************************
|
||||
|
Loading…
Reference in New Issue
Block a user