mcs51: remove unneeded powerdown check

This commit is contained in:
hap 2025-01-22 12:29:56 +01:00
parent 0538b8671f
commit b4698518ff

View File

@ -2192,10 +2192,6 @@ void mcs51_cpu_device::execute_run()
m_inst_cycles = 0;
// if in powerdown, eat remaining cycles
if ((m_features & FEATURE_CMOS) && GET_PD && m_icount > 0)
m_icount = 0;
} while (m_icount > 0);
}