mirror of
https://github.com/YosysHQ/abc.git
synced 2026-09-04 08:33:58 +02:00
Version abc70930
This commit is contained in:
@@ -1,100 +0,0 @@
|
||||
/**CFile****************************************************************
|
||||
|
||||
FileName [mainInit.c]
|
||||
|
||||
SystemName [ABC: Logic synthesis and verification system.]
|
||||
|
||||
PackageName [The main package.]
|
||||
|
||||
Synopsis [Initialization procedures.]
|
||||
|
||||
Author [Alan Mishchenko]
|
||||
|
||||
Affiliation [UC Berkeley]
|
||||
|
||||
Date [Ver. 1.0. Started - June 20, 2005.]
|
||||
|
||||
Revision [$Id: mainInit.c,v 1.3 2005/09/14 22:53:37 casem Exp $]
|
||||
|
||||
***********************************************************************/
|
||||
|
||||
#include "mainInt.h"
|
||||
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
/// DECLARATIONS ///
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
|
||||
extern void Abc_Init( Abc_Frame_t * pAbc );
|
||||
extern void Abc_End ( Abc_Frame_t * pAbc );
|
||||
extern void Io_Init( Abc_Frame_t * pAbc );
|
||||
extern void Io_End ( Abc_Frame_t * pAbc );
|
||||
extern void Cmd_Init( Abc_Frame_t * pAbc );
|
||||
extern void Cmd_End ( Abc_Frame_t * pAbc );
|
||||
extern void Fpga_Init( Abc_Frame_t * pAbc );
|
||||
extern void Fpga_End ( Abc_Frame_t * pAbc );
|
||||
extern void Map_Init( Abc_Frame_t * pAbc );
|
||||
extern void Map_End ( Abc_Frame_t * pAbc );
|
||||
extern void Mio_Init( Abc_Frame_t * pAbc );
|
||||
extern void Mio_End ( Abc_Frame_t * pAbc );
|
||||
extern void Super_Init( Abc_Frame_t * pAbc );
|
||||
extern void Super_End ( Abc_Frame_t * pAbc );
|
||||
extern void Libs_Init(Abc_Frame_t * pAbc);
|
||||
extern void Libs_End(Abc_Frame_t * pAbc);
|
||||
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
/// FUNCTION DEFINITIONS ///
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
|
||||
/**Function*************************************************************
|
||||
|
||||
Synopsis [Starts all the packages.]
|
||||
|
||||
Description []
|
||||
|
||||
SideEffects []
|
||||
|
||||
SeeAlso []
|
||||
|
||||
***********************************************************************/
|
||||
void Abc_FrameInit( Abc_Frame_t * pAbc )
|
||||
{
|
||||
Cmd_Init( pAbc );
|
||||
Io_Init( pAbc );
|
||||
Abc_Init( pAbc );
|
||||
Fpga_Init( pAbc );
|
||||
Map_Init( pAbc );
|
||||
Mio_Init( pAbc );
|
||||
Super_Init( pAbc );
|
||||
Libs_Init( pAbc );
|
||||
}
|
||||
|
||||
|
||||
/**Function*************************************************************
|
||||
|
||||
Synopsis [Stops all the packages.]
|
||||
|
||||
Description []
|
||||
|
||||
SideEffects []
|
||||
|
||||
SeeAlso []
|
||||
|
||||
***********************************************************************/
|
||||
void Abc_FrameEnd( Abc_Frame_t * pAbc )
|
||||
{
|
||||
Abc_End( pAbc );
|
||||
Io_End( pAbc );
|
||||
Cmd_End( pAbc );
|
||||
Fpga_End( pAbc );
|
||||
Map_End( pAbc );
|
||||
Mio_End( pAbc );
|
||||
Super_End( pAbc );
|
||||
Libs_End( pAbc );
|
||||
}
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
/// END OF FILE ///
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
Reference in New Issue
Block a user