提交 8fac5803 编写于 作者: T ths

Improve handling of gdb's single-step / continue arguments.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3075 c046a42c-6fe2-441c-8c8c-71466251a162
上级 db8d7dd1
......@@ -774,6 +774,8 @@ static int gdb_handle_packet(GDBState *s, CPUState *env, const char *line_buf)
env->regs[15] = addr;
#elif defined (TARGET_SH4)
env->pc = addr;
#elif defined (TARGET_MIPS)
env->PC = addr;
#endif
}
#ifdef CONFIG_USER_ONLY
......@@ -784,7 +786,7 @@ static int gdb_handle_packet(GDBState *s, CPUState *env, const char *line_buf)
return RS_IDLE;
case 's':
if (*p != '\0') {
addr = strtoul(p, (char **)&p, 16);
addr = strtoull(p, (char **)&p, 16);
#if defined(TARGET_I386)
env->eip = addr;
#elif defined (TARGET_PPC)
......@@ -796,6 +798,8 @@ static int gdb_handle_packet(GDBState *s, CPUState *env, const char *line_buf)
env->regs[15] = addr;
#elif defined (TARGET_SH4)
env->pc = addr;
#elif defined (TARGET_MIPS)
env->PC = addr;
#endif
}
cpu_single_step(env, 1);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册