mirror of
https://github.com/holub/mame
synced 2025-04-24 17:30:55 +03:00
i8251: "reset" bit is only documented to revert to looking for a mode byte, not reset the entire chip. [R. Belmont]
This commit is contained in:
parent
a3a85159ee
commit
570c01f9ac
@ -625,7 +625,10 @@ WRITE8_MEMBER(i8251_device::control_w)
|
||||
|
||||
if (data & (1<<6))
|
||||
{
|
||||
reset();
|
||||
// datasheet says "returns to mode format", not
|
||||
// completely resets the chip. behavior of DEC Rainbow
|
||||
// backs this up.
|
||||
m_flags |= I8251_EXPECTING_MODE;
|
||||
}
|
||||
|
||||
update_rx_ready();
|
||||
|
Loading…
Reference in New Issue
Block a user