From: Michel Pollet Date: Tue, 12 Oct 2010 09:02:55 +0000 (+0100) Subject: gdb: Adds the 'reset' command X-Git-Tag: v1.0a6~6 X-Git-Url: https://git.htl-mechatronik.at/public/?a=commitdiff_plain;h=398c292e97b5a3309fd1114988e1afdb31d0083c;p=sx%2Fsimavr.git gdb: Adds the 'reset' command Apparently needed for compatibility with AVRStudio debugger Signed-off-by: Michel Pollet --- diff --git a/simavr/sim/sim_gdb.c b/simavr/sim/sim_gdb.c index 33d924f..f2d46ff 100644 --- a/simavr/sim/sim_gdb.c +++ b/simavr/sim/sim_gdb.c @@ -251,6 +251,10 @@ static void gdb_handle_command(avr_gdb_t * g, char * cmd) case 's': { // step avr->state = cpu_Step; } break; + case 'r': { // deprecated, suggested for AVRStudio compatibility + avr->state = cpu_StepDone; + avr_reset(avr); + } break; case 'Z': // set clear break/watchpoint case 'z': { uint32_t kind, addr, len;