mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #2738 from mdko/xilinx-blif
Fix use of blif name in synth_xilinx command
This commit is contained in:
commit
d061b0e41a
|
@ -672,7 +672,7 @@ struct SynthXilinxPass : public ScriptPass
|
|||
|
||||
if (check_label("blif")) {
|
||||
if (!blif_file.empty() || help_mode)
|
||||
run(stringf("write_blif %s", edif_file.c_str()));
|
||||
run(stringf("write_blif %s", blif_file.c_str()));
|
||||
}
|
||||
}
|
||||
} SynthXilinxPass;
|
||||
|
|
Loading…
Reference in New Issue