[Softpear-cvs] softpear/src/cpu/cpu_generic ppc_cpu.cc,1.12,1.13
Status: Pre-Alpha
Brought to you by:
mist
|
From: <mas...@us...> - 2005-03-16 18:03:59
|
Update of /cvsroot/softpear/softpear/src/cpu/cpu_generic In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17244/src/cpu/cpu_generic Modified Files: ppc_cpu.cc Log Message: re-enabled register dump in debug mode (but this will need some changes in the future since threaded register dumps are very confusing) Index: ppc_cpu.cc =================================================================== RCS file: /cvsroot/softpear/softpear/src/cpu/cpu_generic/ppc_cpu.cc,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- ppc_cpu.cc 15 Mar 2005 17:03:03 -0000 1.12 +++ ppc_cpu.cc 16 Mar 2005 18:03:47 -0000 1.13 @@ -123,13 +123,12 @@ #ifdef DEBUG // BEGIN MIST -/* for (i=0; i<32; i++) { + for (i=0; i<32; i++) { printf("r%02i: %08x ", i, gCPU->gpr[i]); if (!((i+1) & 7)) printf("\n"); } printf("pc: %08x lr: %08x opc: %08x\n", gCPU->pc, gCPU->lr, gCPU->current_opc);//MIST printf("----------\n"); -*/ // END MIST #endif |