OpenFPGA/openfpga/src/fabric/build_lut_modules.h

23 lines
692 B
C++

#ifndef BUILD_LUT_MODULES_H
#define BUILD_LUT_MODULES_H
/********************************************************************
* Include header files that are required by function declaration
*******************************************************************/
#include "circuit_library.h"
#include "module_manager.h"
/********************************************************************
* Function declaration
*******************************************************************/
/* begin namespace openfpga */
namespace openfpga {
void build_lut_modules(ModuleManager& module_manager,
const CircuitLibrary& circuit_lib);
} /* end namespace openfpga */
#endif