We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe3ff0b commit 110aadfCopy full SHA for 110aadf
simavr/sim/sim_gdb.c
@@ -359,14 +359,11 @@ gdb_handle_command(
359
avr->state = cpu_StepDone;
360
avr_reset(avr);
361
args += 10;
362
- printf("Reset\n"); // Remove
363
} else if (strncmp(args, "68616c74", 8) == 0) { // halt matched
364
avr->state = cpu_Stopped;
365
args += 8;
366
- printf("Halting\n"); // Remove
367
} else if (strncmp(args, "20", 2) == 0) { // space matched
368
args += 2;
369
- printf("Space\n"); // Remove
370
}
371
else{ // no match - end
372
break;
@@ -526,7 +523,6 @@ gdb_handle_command(
526
523
case 'D': { // detach
527
524
avr->state = cpu_Done;
528
525
gdb_send_reply(g, "OK");
529
- printf("Halted\n"); // Remove
530
} break;
531
default:
532
gdb_send_reply(g, "");
0 commit comments