From: oharboe at B. <oh...@ma...> - 2009-08-27 09:37:08
|
Author: oharboe Date: 2009-08-27 09:37:07 +0200 (Thu, 27 Aug 2009) New Revision: 2642 Modified: trunk/src/target/arm11.c Log: arm11 single stepping wip - at least we know the next PC now Modified: trunk/src/target/arm11.c =================================================================== --- trunk/src/target/arm11.c 2009-08-27 07:35:47 UTC (rev 2641) +++ trunk/src/target/arm11.c 2009-08-27 07:37:07 UTC (rev 2642) @@ -994,6 +994,10 @@ LOG_DEBUG("STEP PC %08" PRIx32 "%s", R(PC), !current ? "!" : ""); + + /* TODO: to implement single stepping on arm11 devices that can't + * do single stepping in hardware we need to calculate the next + * pc and set up breakpoints accordingingly. */ uint32_t next_pc; retval = arm11_simulate_step(target, &next_pc); if (retval != ERROR_OK) |