halt state support for ppc
[qemu] / monitor.c
index 85a997d..70b473d 100644 (file)
--- a/monitor.c
+++ b/monitor.c
@@ -253,7 +253,11 @@ static void do_info_cpus(void)
                     env->cpu_index);
 #if defined(TARGET_I386)
         term_printf(" pc=0x" TARGET_FMT_lx, env->eip + env->segs[R_CS].base);
-        if (env->cpu_halted)
+        if (env->hflags & HF_HALTED_MASK)
+            term_printf(" (halted)");
+#elif defined(TARGET_PPC)
+        term_printf(" nip=0x" TARGET_FMT_lx, env->nip);
+        if (msr_pow)
             term_printf(" (halted)");
 #endif
         term_printf("\n");