Modify arguments to match existing style.
authorKeith Rothman <537074+litghost@users.noreply.github.com>
Fri, 1 Mar 2019 20:14:27 +0000 (12:14 -0800)
committerKeith Rothman <537074+litghost@users.noreply.github.com>
Fri, 1 Mar 2019 20:14:27 +0000 (12:14 -0800)
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
manual/command-reference-manual.tex
techlibs/xilinx/synth_xilinx.cc

index 257bf79868c977d3e5953e9a2c788ddaad72fe1b..bb9d7238c1ec3fe5f5b6f63f5f2230a6e91e39b3 100644 (file)
@@ -4247,10 +4247,10 @@ compatible with 7-Series Xilinx devices.
         generate an output netlist (and BLIF file) suitable for VPR.
         (this feature is experimental and incomplete)
 
-    -no-brams
-               disable infering of block rams
+    -nobrams
+        disable infering of block rams
 
-    -no-drams
+    -nodrams
         disable infering of distributed rams
 
     -run <from_label>:<to_label>
@@ -4280,11 +4280,11 @@ The following commands are executed by this synthesis command:
     coarse:
         synth -run coarse
 
-    bram: (only executed when '-no-brams' is not given)
+    bram: (only executed when '-nobrams' is not given)
         memory_bram -rules +/xilinx/brams.txt
         techmap -map +/xilinx/brams_map.v
 
-    dram: (only executed when '-no-drams' is not given)
+    dram: (only executed when '-nodrams' is not given)
         memory_bram -rules +/xilinx/drams.txt
         techmap -map +/xilinx/drams_map.v
 
index 60cfde604ca29cfc7b264073f332456e562c9d6f..12ad9fdaf5b31a3a871865636d0ee516e42accd3 100644 (file)
@@ -63,10 +63,10 @@ struct SynthXilinxPass : public Pass
                log("        generate an output netlist (and BLIF file) suitable for VPR\n");
                log("        (this feature is experimental and incomplete)\n");
                log("\n");
-               log("    -no-brams\n");
+               log("    -nobrams\n");
                log("        disable infering of block rams\n");
                log("\n");
-               log("    -no-drams\n");
+               log("    -nodrams\n");
                log("        disable infering of distributed rams\n");
                log("\n");
                log("    -run <from_label>:<to_label>\n");
@@ -96,11 +96,11 @@ struct SynthXilinxPass : public Pass
                log("    coarse:\n");
                log("        synth -run coarse\n");
                log("\n");
-               log("    bram: (only executed when '-no-brams' is not given)\n");
+               log("    bram: (only executed when '-nobrams' is not given)\n");
                log("        memory_bram -rules +/xilinx/brams.txt\n");
                log("        techmap -map +/xilinx/brams_map.v\n");
                log("\n");
-               log("    dram: (only executed when '-no-drams' is not given)\n");
+               log("    dram: (only executed when '-nodrams' is not given)\n");
                log("        memory_bram -rules +/xilinx/drams.txt\n");
                log("        techmap -map +/xilinx/drams_map.v\n");
                log("\n");
@@ -182,11 +182,11 @@ struct SynthXilinxPass : public Pass
                                vpr = true;
                                continue;
                        }
-                       if (args[argidx] == "-no-brams") {
+                       if (args[argidx] == "-nobrams") {
                                noBrams = true;
                                continue;
                        }
-                       if (args[argidx] == "-no-drams") {
+                       if (args[argidx] == "-nodrams") {
                                noDrams = true;
                                continue;
                        }