mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-07 09:55:20 +00:00
Fix for limit_range_end when not writing vcd
This commit is contained in:
parent
3e35de2be1
commit
7101df62f8
|
@ -5198,6 +5198,15 @@ int fstReaderIterBlocks2(void *ctx,
|
||||||
}
|
}
|
||||||
previous_time = time_table[i];
|
previous_time = time_table[i];
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
if (time_table[i] != previous_time) {
|
||||||
|
if (xc->limit_range_valid) {
|
||||||
|
if (time_table[i] > xc->limit_range_end) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
previous_time = time_table[i];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
while (tc_head[i]) {
|
while (tc_head[i]) {
|
||||||
|
|
Loading…
Reference in a new issue