summaryrefslogtreecommitdiffstats
path: root/src/map/if/ifMatch2.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2014-08-16 18:28:41 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2014-08-16 18:28:41 -0700
commit97e620a4b7e926a036447e2b1d2b1b6e5a24eacd (patch)
treee352fe691e9739951d0e9f973891600da733a7a8 /src/map/if/ifMatch2.c
parent06100279cdf00acc67a3e08da389220d6dc47f92 (diff)
downloadabc-97e620a4b7e926a036447e2b1d2b1b6e5a24eacd.tar.gz
abc-97e620a4b7e926a036447e2b1d2b1b6e5a24eacd.tar.bz2
abc-97e620a4b7e926a036447e2b1d2b1b6e5a24eacd.zip
Adding specialized matching to 'if'.
Diffstat (limited to 'src/map/if/ifMatch2.c')
-rw-r--r--src/map/if/ifMatch2.c62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/map/if/ifMatch2.c b/src/map/if/ifMatch2.c
new file mode 100644
index 00000000..e635e226
--- /dev/null
+++ b/src/map/if/ifMatch2.c
@@ -0,0 +1,62 @@
+/**CFile****************************************************************
+
+ FileName [ifMatch2.c]
+
+ SystemName [ABC: Logic synthesis and verification system.]
+
+ PackageName [FPGA mapping based on priority cuts.]
+
+ Synopsis [Specialized matching.]
+
+ Author [Alan Mishchenko]
+
+ Affiliation [UC Berkeley]
+
+ Date [Ver. 1.0. Started - September 1, 2009.]
+
+ Revision [$Id: ifMatch2.c,v 1.00 2009/09/01 00:00:00 alanmi Exp $]
+
+***********************************************************************/
+
+#include "if.h"
+
+ABC_NAMESPACE_IMPL_START
+
+
+////////////////////////////////////////////////////////////////////////
+/// DECLARATIONS ///
+////////////////////////////////////////////////////////////////////////
+
+////////////////////////////////////////////////////////////////////////
+/// FUNCTION DEFINITIONS ///
+////////////////////////////////////////////////////////////////////////
+
+/**Function*************************************************************
+
+ Synopsis []
+
+ Description []
+
+ SideEffects []
+
+ SeeAlso []
+
+***********************************************************************/
+void Bat_ManFuncSetupTable()
+{
+}
+void Bat_ManFuncSetdownTable()
+{
+}
+int Bat_ManCellFuncLookup( void * pMan, unsigned * pTruth, int nVars, int nLeaves, char * pStr )
+{
+ return 1;
+}
+
+////////////////////////////////////////////////////////////////////////
+/// END OF FILE ///
+////////////////////////////////////////////////////////////////////////
+
+
+ABC_NAMESPACE_IMPL_END
+