summaryrefslogtreecommitdiffstats
path: root/src/base/io/io.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2007-03-30 08:01:00 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2007-03-30 08:01:00 -0700
commit028138a76eb74eee80f1d9592f43bdbe0d4c3d6c (patch)
tree99371b5ea7fded49c4b914b0cb6e207fb580b2cf /src/base/io/io.c
parent4da784c049b79b76d8c1b82297bd27f45ead9377 (diff)
downloadabc-028138a76eb74eee80f1d9592f43bdbe0d4c3d6c.tar.gz
abc-028138a76eb74eee80f1d9592f43bdbe0d4c3d6c.tar.bz2
abc-028138a76eb74eee80f1d9592f43bdbe0d4c3d6c.zip
Version abc70330
Diffstat (limited to 'src/base/io/io.c')
-rw-r--r--src/base/io/io.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/base/io/io.c b/src/base/io/io.c
index f0dabeb9..09d1a8a5 100644
--- a/src/base/io/io.c
+++ b/src/base/io/io.c
@@ -525,13 +525,13 @@ usage:
fprintf( pAbc->Err, "\t parses a formula representing DSD of a function\n" );
fprintf( pAbc->Err, "\t-h : prints the command summary\n" );
fprintf( pAbc->Err, "\tformula : the formula representing disjoint-support decomposition (DSD)\n" );
- fprintf( pAbc->Err, "\t Example of a formula: !(a*(b+CA(c,!d,e*f))*79B3(g,h,i,k))\n" );
+ fprintf( pAbc->Err, "\t Example of a formula: !(a*(b+CA(!d,e*f,c))*79B3(g,h,i,k))\n" );
fprintf( pAbc->Err, "\t where \'!\' is an INV, \'*\' is an AND, \'+\' is an XOR, \n" );
fprintf( pAbc->Err, "\t CA and 79B3 are hexadecimal representations of truth tables\n" );
- fprintf( pAbc->Err, "\t (in this case CA=11001010 is truth table of MUX(Ctrl,Data1,Data0))\n" );
+ fprintf( pAbc->Err, "\t (in this case CA=11001010 is truth table of MUX(Data0,Data1,Ctrl))\n" );
fprintf( pAbc->Err, "\t The lower chars (a,b,c,etc) are reserved for elementary variables.\n" );
fprintf( pAbc->Err, "\t The upper chars (A,B,C,etc) are reserved for hexadecimal digits.\n" );
- fprintf( pAbc->Err, "\t No spaces are allowed in the formula.\n" );
+ fprintf( pAbc->Err, "\t No spaces are allowed in formulas. In parantheses, LSB goes first.\n" );
return 1;
}