Skip to content

Commit a24cb36

Browse files
committed
sim_param_stats.c: pte_rw_latency is a part of base DRAM model
1 parent 87e85cd commit a24cb36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/riscvsim/sim_params_stats.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -406,8 +406,6 @@ sim_params_print(const SimParams *p)
406406

407407
fprintf(stderr, "\n");
408408
fprintf(stderr, " \x1B[32m*\x1B[0m %-30s : %d\n", "tlb_size", p->tlb_size);
409-
fprintf(stderr, " \x1B[32m*\x1B[0m %-30s : %d\n", "pte_rw_latency",
410-
p->pte_rw_latency);
411409
fprintf(stderr, " \x1B[32m*\x1B[0m %-30s : %lu MB\n", "guest_ram_size", p->guest_ram_size);
412410
fprintf(stderr, " \x1B[32m*\x1B[0m %-30s : %s\n", "mem_model_type",
413411
mem_model_type_str[p->mem_model_type]);
@@ -419,6 +417,8 @@ sim_params_print(const SimParams *p)
419417
fprintf(stderr, " \x1B[32m*\x1B[0m %-30s : %u\n",
420418
"mem_access_latency",
421419
p->mem_access_latency);
420+
fprintf(stderr, " \x1B[32m*\x1B[0m %-30s : %d\n", "pte_rw_latency",
421+
p->pte_rw_latency);
422422
break;
423423
}
424424
case MEM_MODEL_DRAMSIM:

0 commit comments

Comments
 (0)