3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 17:44:09 +00:00

Fix use of blif name in synth_xilinx command

This commit is contained in:
Michael Christensen 2021-04-27 02:29:52 -07:00
parent 86a6ac7623
commit 67d6f3973b

View file

@ -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;