summaryrefslogtreecommitdiffstats
path: root/src/base
diff options
context:
space:
mode:
Diffstat (limited to 'src/base')
-rw-r--r--src/base/abci/abc.c2
-rw-r--r--src/base/test/module.make1
-rw-r--r--src/base/test/test.c70
3 files changed, 72 insertions, 1 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index 89d8cca3..c0c0d71e 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -8706,9 +8706,9 @@ int Abc_CommandTest( Abc_Frame_t * pAbc, int argc, char ** argv )
}
// replace the current network
Abc_FrameReplaceCurrentNetwork( pAbc, pNtkRes );
-
*/
+
{
// extern void Au_Sat3DeriveImpls();
// Au_Sat3DeriveImpls();
diff --git a/src/base/test/module.make b/src/base/test/module.make
new file mode 100644
index 00000000..45da1fb4
--- /dev/null
+++ b/src/base/test/module.make
@@ -0,0 +1 @@
+SRC += src/base/test/test.c
diff --git a/src/base/test/test.c b/src/base/test/test.c
new file mode 100644
index 00000000..f603befd
--- /dev/null
+++ b/src/base/test/test.c
@@ -0,0 +1,70 @@
+/**CFile****************************************************************
+
+ FileName [test.c]
+
+ SystemName [ABC: Logic synthesis and verification system.]
+
+ PackageName [Template package.]
+
+ Synopsis []
+
+ Author []
+
+ Affiliation []
+
+ Date [Ver. 1.0. Started - June 20, 2005.]
+
+ Revision [$Id: test.c,v 1.00 2005/06/20 00:00:00 alanmi Exp $]
+
+***********************************************************************/
+
+#include "main.h"
+
+ABC_NAMESPACE_IMPL_START
+
+
+////////////////////////////////////////////////////////////////////////
+/// DECLARATIONS ///
+////////////////////////////////////////////////////////////////////////
+
+////////////////////////////////////////////////////////////////////////
+/// FUNCTION DEFINITIONS ///
+////////////////////////////////////////////////////////////////////////
+
+/**Function*************************************************************
+
+ Synopsis []
+
+ Description []
+
+ SideEffects []
+
+ SeeAlso []
+
+***********************************************************************/
+void Test_Init( Abc_Frame_t * pAbc )
+{
+}
+
+/**Function*************************************************************
+
+ Synopsis []
+
+ Description []
+
+ SideEffects []
+
+ SeeAlso []
+
+***********************************************************************/
+void Test_End( Abc_Frame_t * pAbc )
+{
+}
+
+////////////////////////////////////////////////////////////////////////
+/// END OF FILE ///
+////////////////////////////////////////////////////////////////////////
+
+
+ABC_NAMESPACE_IMPL_END
+