From: Stuart B. <zu...@us...> - 2008-02-27 20:44:07
|
Update of /cvsroot/hppaqemu/hppaqemu/target-hppa In directory sc8-pr-cvs17.sourceforge.net:/tmp/cvs-serv1397 Modified Files: translate.c Log Message: Add support for the -d cpu option, by Aurelien Jarno. Index: translate.c =================================================================== RCS file: /cvsroot/hppaqemu/hppaqemu/target-hppa/translate.c,v retrieving revision 1.52 retrieving revision 1.53 diff -u -d -r1.52 -r1.53 --- translate.c 27 Feb 2008 15:12:09 -0000 1.52 +++ translate.c 27 Feb 2008 20:43:59 -0000 1.53 @@ -907,6 +907,9 @@ tb->size = last_pc + 4 - pc_start; } #ifdef DEBUG_DISAS + if (loglevel & CPU_LOG_TB_CPU) { + cpu_dump_state(env, logfile, fprintf, 0); + } if (loglevel & CPU_LOG_TB_IN_ASM) { fprintf(logfile, "--------------\n"); fprintf(logfile, "IN: %s\n", lookup_symbol(pc_start)); |