diff options
author | Michael Christensen <chmdko@gmail.com> | 2021-04-27 02:29:52 -0700 |
---|---|---|
committer | Michael Christensen <chmdko@gmail.com> | 2021-04-27 02:29:52 -0700 |
commit | 67d6f3973b5dc3f017b24eb43950707e99b10dff (patch) | |
tree | 68c3ee3615da072f196bea93ea3077373a37d7a5 /techlibs | |
parent | 86a6ac76233186db75cb6092f1d7ff5d0f440761 (diff) | |
download | yosys-67d6f3973b5dc3f017b24eb43950707e99b10dff.tar.gz yosys-67d6f3973b5dc3f017b24eb43950707e99b10dff.tar.bz2 yosys-67d6f3973b5dc3f017b24eb43950707e99b10dff.zip |
Fix use of blif name in synth_xilinx command
Diffstat (limited to 'techlibs')
-rw-r--r-- | techlibs/xilinx/synth_xilinx.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/xilinx/synth_xilinx.cc b/techlibs/xilinx/synth_xilinx.cc index 80d120fe1..1fd2d4f8b 100644 --- a/techlibs/xilinx/synth_xilinx.cc +++ b/techlibs/xilinx/synth_xilinx.cc @@ -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; |