From c329233f0de691d818cc8b1aff3dd23cebf38949 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Tue, 26 May 2015 17:04:37 +0200 Subject: Added output args to synth_ice40 --- techlibs/ice40/synth_ice40.cc | 35 +++++++++++++++++++++++++++++++++++ techlibs/xilinx/synth_xilinx.cc | 4 ++-- 2 files changed, 37 insertions(+), 2 deletions(-) (limited to 'techlibs') diff --git a/techlibs/ice40/synth_ice40.cc b/techlibs/ice40/synth_ice40.cc index e2329031..e1cfa977 100644 --- a/techlibs/ice40/synth_ice40.cc +++ b/techlibs/ice40/synth_ice40.cc @@ -47,6 +47,14 @@ struct SynthIce40Pass : public Pass { log(" -top \n"); log(" use the specified module as top module (default='top')\n"); log("\n"); + log(" -blif \n"); + log(" write the design to the specified BLIF file. writing of an output file\n"); + log(" is omitted if this parameter is not specified.\n"); + log("\n"); + log(" -edif \n"); + log(" write the design to the specified edif file. writing of an output file\n"); + log(" is omitted if this parameter is not specified.\n"); + log("\n"); log(" -run :\n"); log(" only run the commands between the labels (see below). an empty\n"); log(" from label is synonymous to 'begin', and empty to label is\n"); @@ -111,11 +119,18 @@ struct SynthIce40Pass : public Pass { log(" stat\n"); log(" check -noinit\n"); log("\n"); + log(" blif:\n"); + log(" write_blif -gates -attr -param \n"); + log("\n"); + log(" edif:\n"); + log(" write_edif \n"); + log("\n"); } virtual void execute(std::vector args, RTLIL::Design *design) { std::string top_opt = "-auto-top"; std::string run_from, run_to; + std::string blif_file, edif_file; bool nocarry = false; bool nobram = false; bool flatten = false; @@ -128,6 +143,14 @@ struct SynthIce40Pass : public Pass { top_opt = "-top " + args[++argidx]; continue; } + if (args[argidx] == "-blif" && argidx+1 < args.size()) { + blif_file = args[++argidx]; + continue; + } + if (args[argidx] == "-edif" && argidx+1 < args.size()) { + edif_file = args[++argidx]; + continue; + } if (args[argidx] == "-run" && argidx+1 < args.size()) { size_t pos = args[argidx+1].find(':'); if (pos == std::string::npos) @@ -230,6 +253,18 @@ struct SynthIce40Pass : public Pass { Pass::call(design, "check -noinit"); } + if (check_label(active, run_from, run_to, "blif")) + { + if (!blif_file.empty()) + Pass::call(design, stringf("write_blif -gates -attr -param %s", blif_file.c_str())); + } + + if (check_label(active, run_from, run_to, "edif")) + { + if (!edif_file.empty()) + Pass::call(design, stringf("write_edif %s", edif_file.c_str())); + } + log_pop(); } } SynthIce40Pass; diff --git a/techlibs/xilinx/synth_xilinx.cc b/techlibs/xilinx/synth_xilinx.cc index 0e2fdac7..8ef0fae1 100644 --- a/techlibs/xilinx/synth_xilinx.cc +++ b/techlibs/xilinx/synth_xilinx.cc @@ -110,8 +110,8 @@ struct SynthXilinxPass : public Pass { log(" stat\n"); log(" check -noinit\n"); log("\n"); - log(" edif:\n"); - log(" write_edif synth.edif\n"); + log(" edif: (only if -edif)\n"); + log(" write_edif \n"); log("\n"); } virtual void execute(std::vector args, RTLIL::Design *design) -- cgit v1.2.3