Skip to content

Commit 110aadf

Browse files
committed
gdb monitor command clean-up
1 parent fe3ff0b commit 110aadf

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

simavr/sim/sim_gdb.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -359,14 +359,11 @@ gdb_handle_command(
359359
avr->state = cpu_StepDone;
360360
avr_reset(avr);
361361
args += 10;
362-
printf("Reset\n"); // Remove
363362
} else if (strncmp(args, "68616c74", 8) == 0) { // halt matched
364363
avr->state = cpu_Stopped;
365364
args += 8;
366-
printf("Halting\n"); // Remove
367365
} else if (strncmp(args, "20", 2) == 0) { // space matched
368366
args += 2;
369-
printf("Space\n"); // Remove
370367
}
371368
else{ // no match - end
372369
break;
@@ -526,7 +523,6 @@ gdb_handle_command(
526523
case 'D': { // detach
527524
avr->state = cpu_Done;
528525
gdb_send_reply(g, "OK");
529-
printf("Halted\n"); // Remove
530526
} break;
531527
default:
532528
gdb_send_reply(g, "");

0 commit comments

Comments
 (0)