summaryrefslogtreecommitdiffstats
path: root/src/base/abci/abc.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2018-12-04 23:04:13 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2018-12-04 23:04:13 -0800
commit65b10c0327ce232ba999d51d00a52db53d52bea0 (patch)
tree72bc9d8f7a8a8455d1249a78159e59bc32b1f25b /src/base/abci/abc.c
parent163bba53e0a547dbed5e5bc5d2aa4a0d22435813 (diff)
downloadabc-65b10c0327ce232ba999d51d00a52db53d52bea0.tar.gz
abc-65b10c0327ce232ba999d51d00a52db53d52bea0.tar.bz2
abc-65b10c0327ce232ba999d51d00a52db53d52bea0.zip
Experiments with retiming.
Diffstat (limited to 'src/base/abci/abc.c')
-rw-r--r--src/base/abci/abc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index 3a3ccac6..5546aec9 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -30073,7 +30073,7 @@ int Abc_CommandAbc9Write( Abc_Frame_t * pAbc, int argc, char ** argv )
int fWriteNewLine = 0;
int fVerbose = 0;
Extra_UtilGetoptReset();
- while ( ( c = Extra_UtilGetopt( argc, argv, "upmlcvh" ) ) != EOF )
+ while ( ( c = Extra_UtilGetopt( argc, argv, "upmlnvh" ) ) != EOF )
{
switch ( c )
{
@@ -30089,7 +30089,7 @@ int Abc_CommandAbc9Write( Abc_Frame_t * pAbc, int argc, char ** argv )
case 'l':
fMiniLut ^= 1;
break;
- case 'c':
+ case 'n':
fWriteNewLine ^= 1;
break;
case 'v':
@@ -30131,13 +30131,13 @@ int Abc_CommandAbc9Write( Abc_Frame_t * pAbc, int argc, char ** argv )
return 0;
usage:
- Abc_Print( -2, "usage: &w [-upmlcvh] <file>\n" );
+ Abc_Print( -2, "usage: &w [-upmlnvh] <file>\n" );
Abc_Print( -2, "\t writes the current AIG into the AIGER file\n" );
Abc_Print( -2, "\t-u : toggle writing canonical AIG structure [default = %s]\n", fUnique? "yes" : "no" );
Abc_Print( -2, "\t-p : toggle writing Verilog with 'and' and 'not' [default = %s]\n", fVerilog? "yes" : "no" );
Abc_Print( -2, "\t-m : toggle writing MiniAIG rather than AIGER [default = %s]\n", fMiniAig? "yes" : "no" );
Abc_Print( -2, "\t-l : toggle writing MiniLUT rather than AIGER [default = %s]\n", fMiniLut? "yes" : "no" );
- Abc_Print( -2, "\t-c : toggle writing \'\\n\' after \'c\' in the AIGER file [default = %s]\n", fWriteNewLine? "yes": "no" );
+ Abc_Print( -2, "\t-n : toggle writing \'\\n\' after \'c\' in the AIGER file [default = %s]\n", fWriteNewLine? "yes": "no" );
Abc_Print( -2, "\t-v : toggle verbose output [default = %s]\n", fVerbose? "yes": "no" );
Abc_Print( -2, "\t-h : print the command usage\n");
Abc_Print( -2, "\t<file> : the file name\n");