3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-12 04:03:45 +00:00

Typo: wire delay is -W argument

This commit is contained in:
Eddie Hung 2019-06-12 09:13:53 -07:00
parent 2dffa4685b
commit afd620fd5f

View file

@ -1219,7 +1219,7 @@ struct Abc9Pass : public Pass {
continue;
}
if (arg == "-W" && argidx+1 < args.size()) {
wire_delay = "-S " + args[++argidx];
wire_delay = "-W " + args[++argidx];
continue;
}
break;