2020-02-27 20:39:57 -06:00
|
|
|
#ifndef SDC_MEMORY_UTILS_H
|
|
|
|
#define SDC_MEMORY_UTILS_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include <fstream>
|
|
|
|
#include <string>
|
2022-10-06 19:08:50 -05:00
|
|
|
|
2020-02-27 20:39:57 -06:00
|
|
|
#include "module_manager.h"
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
2022-10-06 19:08:50 -05:00
|
|
|
void rec_print_pnr_sdc_disable_configurable_memory_module_output(
|
|
|
|
std::fstream& fp, const bool& flatten_names,
|
|
|
|
const ModuleManager& module_manager, const ModuleId& parent_module,
|
|
|
|
const std::string& parent_module_path);
|
2020-02-27 20:39:57 -06:00
|
|
|
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|