summaryrefslogtreecommitdiffstats
path: root/src/map/scl/sclLib.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2013-08-10 18:11:09 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2013-08-10 18:11:09 -0700
commit6c4252c5c96f53c0e90c54287ab4864ed5f7d1a9 (patch)
tree23eafff7649386fc060ae9538ffd481ac0cd31e3 /src/map/scl/sclLib.c
parent55872bc30277ee6a03d68569d77c997e27b58d1a (diff)
downloadabc-6c4252c5c96f53c0e90c54287ab4864ed5f7d1a9.tar.gz
abc-6c4252c5c96f53c0e90c54287ab4864ed5f7d1a9.tar.bz2
abc-6c4252c5c96f53c0e90c54287ab4864ed5f7d1a9.zip
Integrated buffering and sizing.
Diffstat (limited to 'src/map/scl/sclLib.c')
-rw-r--r--src/map/scl/sclLib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/scl/sclLib.c b/src/map/scl/sclLib.c
index 1f9b26ec..f238d429 100644
--- a/src/map/scl/sclLib.c
+++ b/src/map/scl/sclLib.c
@@ -822,7 +822,7 @@ void Abc_SclLinkCells( SC_Lib * p )
SC_Cell * Abc_SclFindInvertor( SC_Lib * p, int fFindBuff )
{
SC_Cell * pCell = NULL;
- word Truth = fFindBuff ? ABC_CONST(0x5555555555555555) : ABC_CONST(0xAAAAAAAAAAAAAAAA);
+ word Truth = fFindBuff ? ABC_CONST(0xAAAAAAAAAAAAAAAA) : ABC_CONST(0x5555555555555555);
int k;
SC_LibForEachCellClass( p, pCell, k )
if ( pCell->n_inputs == 1 && Vec_WrdEntry(SC_CellPin(pCell, 1)->vFunc, 0) == Truth )