On 9/24/25 10:50, Richard Henderson wrote:
-    cs->halted = env->runstall;
+    if (cs->start_powered_off) {
+        cs->halted = 1;
+    } else {
+        cs->halted = 0;
+    }

This would of course be

   cs->halted = cs->start_powered_off;

though I'm a bit surprised that such generic fields must
be handled in target-specific code.

Indeed, this is done by cpu_common_reset_hold.


r~

Reply via email to