fix single step of bx instruction going into Thumb mode
Without this fix, the following code cannot be single stepped: add ip, pc, #1 bx ip [thumb code here]
This commit is contained in:
parent
97166327db
commit
6726b78707
|
@ -358,7 +358,7 @@ int arm_simulate_step_core(target_t *target, uint32_t *dry_run_pc, struct arm_si
|
||||||
|
|
||||||
if (dry_run_pc)
|
if (dry_run_pc)
|
||||||
{
|
{
|
||||||
*dry_run_pc = target;
|
*dry_run_pc = target & ~1;
|
||||||
return ERROR_OK;
|
return ERROR_OK;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue