mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
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:
parent
134c628357
commit
d3407c67b1
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue