3c505: avoid excessive 82586 resets

This commit is contained in:
Patrick Mackinlay 2023-02-06 12:11:37 +07:00
parent 69047f58e2
commit 241cdf4fea

View File

@ -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)
{