Removed debug stuff

This commit is contained in:
Makise Kurisu 2016-04-29 21:47:03 +02:00
parent 9bf6c625f4
commit a989b7bb06
1 changed files with 2 additions and 2 deletions

4
main.c
View File

@ -139,7 +139,7 @@ int run_simulation(char *command, ...) {
proc = popen(cmd, "r");
if (proc == NULL) {
printf("Error: Could not start the simulation.\n");
printf("[E] Could not start the simulation.\n");
return 1;
}
@ -182,7 +182,7 @@ int run_gtkwave(char *toplevel, char *command, ...) {
vsprintf(cmd, command, argptr);
va_end(argptr);
printf("RUN_SIM: %s\n", cmd);
//printf("RUN_SIM: %s\n", cmd);
pid = system2(cmd, NULL, NULL);
//printf("--> PID=%d\n", pid);