mirror of
https://github.com/holub/mame
synced 2025-07-01 00:09:18 +03:00
3c505: avoid excessive 82586 resets
This commit is contained in:
parent
69047f58e2
commit
241cdf4fea
@ -405,7 +405,8 @@ void isa16_3c505_device::acr_w(u8 data)
|
||||
if ((data ^ m_acr) & ACR_LED2)
|
||||
m_led[1] = bool(data & ACR_LED2);
|
||||
|
||||
m_net->reset_w((data & ACR_R586) ? 1 : 0);
|
||||
if ((data ^ m_acr) & ACR_R586)
|
||||
m_net->reset_w((data & ACR_R586) ? 1 : 0);
|
||||
|
||||
if ((data ^ m_acr) & ACR_FLSH)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user