OpenFPGA/openfpga/src/fabric/build_lut_modules.h

23 lines
692 B
C
Raw Normal View History

2020-02-12 20:52:41 -06:00
#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