aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiodrag Milanović <mmicko@gmail.com>2022-01-31 16:11:00 +0100
committerGitHub <noreply@github.com>2022-01-31 16:11:00 +0100
commitbf85dfee5e0cceaed8f6f6782afe2d1803039e6a (patch)
treee2a469baaa6c93450cb2a554a75eaf107a1aa66c
parentfc40df09166b6c083ffbe87d07c51ba8abde760e (diff)
parent0520e999680c1e371391fcb6335150cbc5f97b66 (diff)
downloadyosys-bf85dfee5e0cceaed8f6f6782afe2d1803039e6a.tar.gz
yosys-bf85dfee5e0cceaed8f6f6782afe2d1803039e6a.tar.bz2
yosys-bf85dfee5e0cceaed8f6f6782afe2d1803039e6a.zip
Merge pull request #3176 from higuoxing/fix-ref-manual
Fix the help message of synth_quicklogic command.
-rw-r--r--techlibs/quicklogic/synth_quicklogic.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/quicklogic/synth_quicklogic.cc b/techlibs/quicklogic/synth_quicklogic.cc
index a67b167b8..754de2de6 100644
--- a/techlibs/quicklogic/synth_quicklogic.cc
+++ b/techlibs/quicklogic/synth_quicklogic.cc
@@ -225,8 +225,8 @@ struct SynthQuickLogicPass : public ScriptPass {
}
if (check_label("verilog")) {
- if (!verilog_file.empty()) {
- run("write_verilog -noattr -nohex " + verilog_file);
+ if (!verilog_file.empty() || help_mode) {
+ run(stringf("write_verilog -noattr -nohex %s", help_mode ? "<file-name>" : verilog_file.c_str()));
}
}
}