From b4698518fffba04a4d21783efe17a9701bede8e0 Mon Sep 17 00:00:00 2001 From: hap Date: Wed, 22 Jan 2025 12:29:56 +0100 Subject: [PATCH] mcs51: remove unneeded powerdown check --- src/devices/cpu/mcs51/mcs51.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/devices/cpu/mcs51/mcs51.cpp b/src/devices/cpu/mcs51/mcs51.cpp index 1c1045ffd92..4f0bffd06fe 100644 --- a/src/devices/cpu/mcs51/mcs51.cpp +++ b/src/devices/cpu/mcs51/mcs51.cpp @@ -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); }