mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 01:24:10 +00:00
Merge pull request #4856 from gadfort/synth-flatten
add support for passing flatten -separator to flatten in synth
This commit is contained in:
commit
0c95a76c97
|
@ -357,6 +357,9 @@ struct FlattenPass : public Pass {
|
|||
|
||||
FlattenWorker worker;
|
||||
|
||||
if (design->scratchpad.count("flatten.separator"))
|
||||
worker.separator = design->scratchpad_get_string("flatten.separator");
|
||||
|
||||
size_t argidx;
|
||||
for (argidx = 1; argidx < args.size(); argidx++) {
|
||||
if (args[argidx] == "-wb") {
|
||||
|
|
Loading…
Reference in a new issue