From 480ca14c75e9f8c54ca9b55c39162324aaa1e288 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Wed, 19 Sep 2012 17:35:04 -0700 Subject: Extending Liberty parser to handle multi-output cells. --- src/map/mio/mioUtils.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/map/mio') diff --git a/src/map/mio/mioUtils.c b/src/map/mio/mioUtils.c index 41b03d7d..347d81f5 100644 --- a/src/map/mio/mioUtils.c +++ b/src/map/mio/mioUtils.c @@ -319,6 +319,8 @@ Mio_Gate_t ** Mio_CollectRoots( Mio_Library_t * pLib, int nInputs, float tDelay, continue; if ( pGate->uTruth == ~0xAAAAAAAAAAAAAAAA && fSkipInv ) continue; + if ( pGate->pTwin ) // skip multi-output gates for now + continue; // check if the gate with this functionality already exists for ( i = 0; i < iGate; i++ ) if ( ppGates[i]->uTruth == pGate->uTruth ) -- cgit v1.2.3