mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
halt state support for ppc
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1657 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
f24e5695e5
commit
e80e1cc4b1
4 changed files with 21 additions and 1 deletions
|
@ -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");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue