diff options
Diffstat (limited to 'vm/runtime.c')
-rw-r--r-- | vm/runtime.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vm/runtime.c b/vm/runtime.c index 998bdc3..e6fb654 100644 --- a/vm/runtime.c +++ b/vm/runtime.c @@ -299,7 +299,8 @@ err_t vm_execute_all(vm_t *vm) } #if VERBOSE >= 1 - fprintf(stdout, "[vm_execute_all]: Final VM state(Cycle %lu)\n", cycles); + fprintf(stdout, "[%svm_execute_all%s]: Final VM state(Cycle %lu)\n", + TERM_YELLOW, TERM_RESET, cycles); vm_print_all(vm, stdout); #endif return err; |