mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Add rewrite_filename for sim -vcd argument.
This commit is contained in:
parent
949eb95593
commit
cdc802e4b7
|
@ -810,7 +810,9 @@ struct SimPass : public Pass {
|
||||||
size_t argidx;
|
size_t argidx;
|
||||||
for (argidx = 1; argidx < args.size(); argidx++) {
|
for (argidx = 1; argidx < args.size(); argidx++) {
|
||||||
if (args[argidx] == "-vcd" && argidx+1 < args.size()) {
|
if (args[argidx] == "-vcd" && argidx+1 < args.size()) {
|
||||||
worker.vcdfile.open(args[++argidx].c_str());
|
std::string vcd_filename = args[++argidx];
|
||||||
|
rewrite_filename(vcd_filename);
|
||||||
|
worker.vcdfile.open(vcd_filename.c_str());
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (args[argidx] == "-n" && argidx+1 < args.size()) {
|
if (args[argidx] == "-n" && argidx+1 < args.size()) {
|
||||||
|
|
Loading…
Reference in a new issue