summaryrefslogtreecommitdiffstats
path: root/src/base/main/mainUtils.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2012-03-02 00:57:48 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2012-03-02 00:57:48 -0800
commit7926d75ecb4ffd4441bea0c2d731e5b533534ee3 (patch)
tree42bd5aa54fe84a6f1e635c8a77a412beb1b4258c /src/base/main/mainUtils.c
parenta6f363d4615d01484af29cf8dcc53c87faeb2f3b (diff)
downloadabc-7926d75ecb4ffd4441bea0c2d731e5b533534ee3.tar.gz
abc-7926d75ecb4ffd4441bea0c2d731e5b533534ee3.tar.bz2
abc-7926d75ecb4ffd4441bea0c2d731e5b533534ee3.zip
Adding features related to the communication bridge.
Diffstat (limited to 'src/base/main/mainUtils.c')
-rw-r--r--src/base/main/mainUtils.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/base/main/mainUtils.c b/src/base/main/mainUtils.c
index e263bc94..5b6dc893 100644
--- a/src/base/main/mainUtils.c
+++ b/src/base/main/mainUtils.c
@@ -120,7 +120,7 @@ void Abc_UtilsPrintUsage( Abc_Frame_t * pAbc, char * ProgName )
{
fprintf( pAbc->Err, "\n" );
fprintf( pAbc->Err,
- "usage: %s [-c cmd] [-f script] [-h] [-o file] [-s] [-t type] [-T type] [-x] [file]\n",
+ "usage: %s [-c cmd] [-f script] [-h] [-o file] [-s] [-t type] [-T type] [-x] [-b] [file]\n",
ProgName);
fprintf( pAbc->Err, " -c cmd\texecute commands `cmd'\n");
fprintf( pAbc->Err, " -F script\texecute commands from a script file and echo commands\n");
@@ -131,6 +131,7 @@ void Abc_UtilsPrintUsage( Abc_Frame_t * pAbc, char * ProgName )
fprintf( pAbc->Err, " -t type\tspecify input type (blif_mv (default), blif_mvs, blif, or none)\n");
fprintf( pAbc->Err, " -T type\tspecify output type (blif_mv (default), blif_mvs, blif, or none)\n");
fprintf( pAbc->Err, " -x\t\tequivalent to '-t none -T none'\n");
+ fprintf( pAbc->Err, " -b\t\trunning in bridge mode\n");
fprintf( pAbc->Err, "\n" );
}