mirror of
https://github.com/openhwgroup/cva5.git
synced 2025-04-20 03:57:18 -04:00
Fixed how tracer values are being dumped.
This commit is contained in:
parent
23ee598df6
commit
71e69c87f7
1 changed files with 2 additions and 2 deletions
|
@ -134,14 +134,14 @@ void TaigaTracer<TB>::tick() {
|
|||
tb->clk = 1;
|
||||
tb->eval();
|
||||
#ifdef TRACE_ON
|
||||
verilatorWaveformTracer->dump(vluint32_t(10*cycle_count-2));
|
||||
verilatorWaveformTracer->dump(vluint32_t(cycle_count));
|
||||
#endif
|
||||
cycle_count++;
|
||||
|
||||
tb->clk = 0;
|
||||
tb->eval();
|
||||
#ifdef TRACE_ON
|
||||
verilatorWaveformTracer->dump(vluint32_t(10*cycle_count));
|
||||
verilatorWaveformTracer->dump(vluint32_t(cycle_count));
|
||||
#endif
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue