Fixes in "hilomap" help message

This commit is contained in:
Clifford Wolf 2014-10-08 21:38:37 +02:00
parent 9dea161321
commit 696d7ed40e

View file

@ -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();