mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
dec8.cpp: Revert ill-considered timing change that broke srdarwin (nw)
This commit is contained in:
parent
d3e80e1e78
commit
936b16a147
@ -162,7 +162,7 @@ WRITE8_MEMBER(dec8_state::dec8_i8751_w)
|
||||
case 0: /* High byte - SECIRQ is trigged on activating this latch */
|
||||
m_i8751_value = (m_i8751_value & 0xff) | (data << 8);
|
||||
m_mcu->set_input_line(MCS51_INT1_LINE, ASSERT_LINE);
|
||||
m_i8751_timer->adjust(m_mcu->clocks_to_attotime(3)); // 3 clocks not confirmed
|
||||
m_i8751_timer->adjust(m_mcu->clocks_to_attotime(64)); // 64 clocks not confirmed
|
||||
break;
|
||||
case 1: /* Low byte */
|
||||
m_i8751_value = (m_i8751_value & 0xff00) | data;
|
||||
|
Loading…
Reference in New Issue
Block a user