X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=monitor.c;h=70b473ddbff6ba7b3b3373485a05640675a88d2e;hb=e80e1cc4b18d388227d2fa6b8551929a381d2490;hp=9befd82b06eb0607f9ef34678a10c5f24c6589b0;hpb=f24e5695e5fab2d4d143c34ffe8164ddeac9b12b;p=qemu diff --git a/monitor.c b/monitor.c index 9befd82..70b473d 100644 --- a/monitor.c +++ b/monitor.c @@ -255,6 +255,10 @@ static void do_info_cpus(void) term_printf(" pc=0x" TARGET_FMT_lx, env->eip + env->segs[R_CS].base); 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"); }