diff --git a/src/emu/cpu/h8/h8.c b/src/emu/cpu/h8/h8.c index 2c52745397d..3c7b7724df6 100644 --- a/src/emu/cpu/h8/h8.c +++ b/src/emu/cpu/h8/h8.c @@ -197,7 +197,8 @@ void h8_device::execute_run() } while(bcount && icount && icount <= bcount) internal_update(end_cycles - bcount); - do_exec_partial(); + if(inst_substate) + do_exec_partial(); } end_cycles = 0; }