specimx: missed another null reference

This commit is contained in:
Robbbert 2021-02-13 22:36:42 +11:00
parent e8a798aba3
commit 3beb4a9fa7

View File

@ -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;
}
}
}