diff options
Diffstat (limited to 'src/map/fpga/fpgaCreate.c')
| -rw-r--r-- | src/map/fpga/fpgaCreate.c | 7 | 
1 files changed, 6 insertions, 1 deletions
diff --git a/src/map/fpga/fpgaCreate.c b/src/map/fpga/fpgaCreate.c index 5245f050..168b69c6 100644 --- a/src/map/fpga/fpgaCreate.c +++ b/src/map/fpga/fpgaCreate.c @@ -19,6 +19,9 @@  #include "fpgaInt.h"  #include "main.h" +ABC_NAMESPACE_IMPL_START + +  ////////////////////////////////////////////////////////////////////////  ///                        DECLARATIONS                              ///  //////////////////////////////////////////////////////////////////////// @@ -169,7 +172,7 @@ Fpga_Man_t * Fpga_ManCreate( int nInputs, int nOutputs, int fVerbose )      // start the manager      p = ABC_ALLOC( Fpga_Man_t, 1 );      memset( p, 0, sizeof(Fpga_Man_t) ); -    p->pLutLib   = Abc_FrameReadLibLut(); +    p->pLutLib   = (Fpga_LutLib_t *)Abc_FrameReadLibLut();      p->nVarsMax  = p->pLutLib->LutMax;      p->fVerbose  = fVerbose;      p->fAreaRecovery = 1; @@ -580,3 +583,5 @@ void Fpga_ManStats( Fpga_Man_t * p )  ///                       END OF FILE                                ///  //////////////////////////////////////////////////////////////////////// +ABC_NAMESPACE_IMPL_END +  | 
