(MESS) stop kaypro2x,4a,10 from asserting when turning motors on (it's ok to turn them off though).

This commit is contained in:
Robbbert 2013-07-27 12:56:34 +00:00
parent 91697c1f06
commit 0e488fa4ce

View File

@ -188,8 +188,9 @@ WRITE8_MEMBER( kaypro_state::kaypro2x_system_port_w )
output_set_value("ledB", BIT(data, 1));
/* CLEAR_LINE means to turn motors on */
floppy_mon_w(floppy_get_device(machine(), 0), BIT(data, 4) ? CLEAR_LINE : ASSERT_LINE);
floppy_mon_w(floppy_get_device(machine(), 1), BIT(data, 4) ? CLEAR_LINE : ASSERT_LINE);
// commented out because turning the motors on causes an assert... turning them off is ok though??
//floppy_mon_w(floppy_get_device(machine(), 0), BIT(data, 4) ? CLEAR_LINE : ASSERT_LINE);
//floppy_mon_w(floppy_get_device(machine(), 1), BIT(data, 4) ? CLEAR_LINE : ASSERT_LINE);
m_system_port = data;
}