mirror of
https://github.com/holub/mame
synced 2025-04-24 01:11:11 +03:00
rainbow, vt240: unbreak writes to DTR after 97721a45be
This commit is contained in:
parent
1cdc1d5c8f
commit
ad4150720b
@ -2336,7 +2336,7 @@ WRITE_LINE_MEMBER(rainbow_state::irq_hi_w)
|
||||
#ifdef ASSUME_MODEL_A_HARDWARE
|
||||
m_irq_high = 0;
|
||||
#else
|
||||
m_irq_high = (state == ASSERT_LINE) ? 0x80 : 0;
|
||||
m_irq_high = (state == ASSERT_LINE) ? 0 : 0x80;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -123,7 +123,7 @@ WRITE_LINE_MEMBER(vt240_state::write_keyboard_clock)
|
||||
|
||||
WRITE_LINE_MEMBER(vt240_state::lben_w)
|
||||
{
|
||||
m_lb = state ? false : true;
|
||||
m_lb = state ? true : false;
|
||||
}
|
||||
|
||||
WRITE_LINE_MEMBER(vt240_state::t11_reset_w)
|
||||
|
Loading…
Reference in New Issue
Block a user