From 696d7ed40ed9de48629e31a0c1cb7f1f586306e9 Mon Sep 17 00:00:00 2001
From: Clifford Wolf <clifford@clifford.at>
Date: Wed, 8 Oct 2014 21:38:37 +0200
Subject: [PATCH] Fixes in "hilomap" help message

---
 passes/techmap/hilomap.cc | 6 ++----
 1 file 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();