From: Clifford Wolf Date: Wed, 8 Oct 2014 19:38:37 +0000 (+0200) Subject: Fixes in "hilomap" help message X-Git-Tag: yosys-0.4~91 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=696d7ed40ed9de48629e31a0c1cb7f1f586306e9;p=yosys.git Fixes in "hilomap" help message --- diff --git a/passes/techmap/hilomap.cc b/passes/techmap/hilomap.cc index f598ddc6a..9a14ffa3c 100644 --- a/passes/techmap/hilomap.cc +++ b/passes/techmap/hilomap.cc @@ -60,9 +60,7 @@ struct HilomapPass : public Pass { log("\n"); log(" hilomap [options] [selection]\n"); log("\n"); - log("Map module inputs/outputs to PAD cells from a library. This pass\n"); - log("can only map to very simple PAD cells. Use 'techmap' to further map\n"); - log("the resulting cells to more sophisticated PAD cells.\n"); + log("Map constants to 'tielo' and 'tiehi' driver cells.\n"); log("\n"); log(" -hicell \n"); log(" Replace constant hi bits with this cell.\n"); @@ -78,7 +76,7 @@ struct HilomapPass : public Pass { } virtual void execute(std::vector args, RTLIL::Design *design) { - log_header("Executing HILOPAD pass (mapping to constant drivers).\n"); + log_header("Executing HILOMAP pass (mapping to constant drivers).\n"); hicell_celltype = std::string(); hicell_portname = std::string();