mirror of
https://github.com/holub/mame
synced 2025-04-23 17:00:53 +03:00
specimx: missed another null reference
This commit is contained in:
parent
e8a798aba3
commit
3beb4a9fa7
@ -206,19 +206,21 @@ void special_state::specimx_disk_ctrl_w(offs_t offset, uint8_t data)
|
||||
m_fdc->set_floppy(floppy);
|
||||
|
||||
if (floppy)
|
||||
{
|
||||
floppy->mon_w(0);
|
||||
|
||||
switch(offset)
|
||||
{
|
||||
case 0 :
|
||||
switch(offset)
|
||||
{
|
||||
case 0 :
|
||||
m_maincpu->set_input_line(INPUT_LINE_HALT, ASSERT_LINE);
|
||||
break;
|
||||
case 2 :
|
||||
case 2 :
|
||||
floppy->ss_w(data & 1);
|
||||
break;
|
||||
case 3 :
|
||||
case 3 :
|
||||
m_drive = data & 1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user