Skip to content

Commit

Permalink
utils,config: remove printf (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
poemonsense authored Sep 8, 2023
1 parent c377670 commit 0a4d0de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/utils/dynamic-config.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
struct DynamicConfig dynamic_config = {};
void update_dynamic_config(void* config) {
memcpy((void*)&dynamic_config, config, sizeof(struct DynamicConfig));
printf("NEMU dynamic_config update\n");
printf(" - ignore_illegal_mem_access %x\n", dynamic_config.ignore_illegal_mem_access);
printf(" - debug_difftest %x\n", dynamic_config.debug_difftest);
// printf("NEMU dynamic_config update\n");
// printf(" - ignore_illegal_mem_access %x\n", dynamic_config.ignore_illegal_mem_access);
// printf(" - debug_difftest %x\n", dynamic_config.debug_difftest);
}

0 comments on commit 0a4d0de

Please sign in to comment.