diff options
author | Ben Widawsky <ben@bwidawsk.net> | 2019-07-08 12:41:22 -0700 |
---|---|---|
committer | Dan Ravensloft <dan.ravensloft@gmail.com> | 2019-07-18 17:06:25 +0100 |
commit | 999811572a652a60003b98b120a5e2da20aad059 (patch) | |
tree | bbf446d007d1362ffa4ca4f11956b5df977acd2b /techlibs/intel | |
parent | f950a7a75d4353e0e31c523365a10926bc6180af (diff) | |
download | yosys-999811572a652a60003b98b120a5e2da20aad059.tar.gz yosys-999811572a652a60003b98b120a5e2da20aad059.tar.bz2 yosys-999811572a652a60003b98b120a5e2da20aad059.zip |
intel_synth: Fix help message
cyclonev has been a "supported" family since the initial commit. The old
commit message suggested to use a10gx which is incorrect.
Aside from the obvious lack of functional change due to this just being
a help message, users who were previously using "a10gx" for "cyclonev" will
also have no functional change by using "cyclonev" instead.
Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
Diffstat (limited to 'techlibs/intel')
-rw-r--r-- | techlibs/intel/synth_intel.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/intel/synth_intel.cc b/techlibs/intel/synth_intel.cc index 5d6254ff6..0b44a835f 100644 --- a/techlibs/intel/synth_intel.cc +++ b/techlibs/intel/synth_intel.cc @@ -40,7 +40,7 @@ struct SynthIntelPass : public ScriptPass { log(" generate the synthesis netlist for the specified family.\n"); log(" MAX10 is the default target if not family argument specified.\n"); log(" For Cyclone GX devices, use cycloneiv argument; For Cyclone E, use cycloneive.\n"); - log(" Cyclone V and Arria 10 GX devices are experimental, use it with a10gx argument.\n"); + log(" Cyclone V and Arria 10 GX devices are experimental.\n"); log("\n"); log(" -top <module>\n"); log(" use the specified module as top module (default='top')\n"); |