30 lines
1018 B
C
30 lines
1018 B
C
|
#ifndef VERILOG_LUT_H
|
||
|
#define VERILOG_LUT_H
|
||
|
|
||
|
/********************************************************************
|
||
|
* Include header files that are required by function declaration
|
||
|
*******************************************************************/
|
||
|
#include <fstream>
|
||
|
#include <string>
|
||
|
|
||
|
#include "circuit_library.h"
|
||
|
#include "module_manager.h"
|
||
|
|
||
|
/********************************************************************
|
||
|
* Function declaration
|
||
|
*******************************************************************/
|
||
|
|
||
|
/* begin namespace openfpga */
|
||
|
namespace openfpga {
|
||
|
|
||
|
void print_verilog_submodule_luts(ModuleManager& module_manager,
|
||
|
std::vector<std::string>& netlist_names,
|
||
|
const CircuitLibrary& circuit_lib,
|
||
|
const std::string& verilog_dir,
|
||
|
const std::string& submodule_dir,
|
||
|
const bool& use_explicit_port_map);
|
||
|
|
||
|
} /* end namespace openfpga */
|
||
|
|
||
|
#endif
|