build/sim/core: Cast main_time to vluint64_t to avoid ambiguity error of the dump function to be used.

This commit is contained in:
Florent Kermarrec 2021-03-03 09:25:38 +01:00
parent 134c628357
commit d3407c67b1
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ extern "C" void litex_sim_tracer_dump()
}
if (dump_enabled && tfp_start <= main_time && main_time <= tfp_end) {
tfp->dump(main_time);
tfp->dump((vluint64_t) main_time);
}
}