kinst: add debugger side effects check after prev commit

This commit is contained in:
hap 2025-03-02 14:57:54 +01:00
parent a7e0a2fd50
commit fa5c0fa3ee

View File

@ -505,7 +505,8 @@ uint32_t kinst_state::rom_r(offs_t offset)
{
// add RdRdy clocks on EPROM access
// bootup sequence takes approx. 6 seconds, and it's not a CPU clock divider
m_maincpu->adjust_icount(-128);
if (!machine().side_effects_disabled())
m_maincpu->adjust_icount(-128);
return m_rombase[offset];
}