diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-10-08 21:38:37 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-10-08 21:38:37 +0200 |
commit | 696d7ed40ed9de48629e31a0c1cb7f1f586306e9 (patch) | |
tree | b2e606d4b04e67cd24328b90c8204626cb32acb9 | |
parent | 9dea161321c7a3fb47b5e085f91b4ecf40c9e209 (diff) | |
download | yosys-696d7ed40ed9de48629e31a0c1cb7f1f586306e9.tar.gz yosys-696d7ed40ed9de48629e31a0c1cb7f1f586306e9.tar.bz2 yosys-696d7ed40ed9de48629e31a0c1cb7f1f586306e9.zip |
Fixes in "hilomap" help message
-rw-r--r-- | passes/techmap/hilomap.cc | 6 |
1 files changed, 2 insertions, 4 deletions
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 <celltype> <portname>\n"); log(" Replace constant hi bits with this cell.\n"); @@ -78,7 +76,7 @@ struct HilomapPass : public Pass { } virtual void execute(std::vector<std::string> 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(); |