2020-05-14 17:53:15 -05:00
|
|
|
#ifndef CONFIGURE_PORT_SDC_WRITER_H
|
|
|
|
#define CONFIGURE_PORT_SDC_WRITER_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2022-10-06 19:08:50 -05:00
|
|
|
|
2022-10-06 20:08:57 -05:00
|
|
|
#include "circuit_library.h"
|
2020-05-14 17:53:15 -05:00
|
|
|
#include "module_manager.h"
|
2022-10-06 20:08:57 -05:00
|
|
|
#include "mux_library.h"
|
2020-05-14 17:53:15 -05:00
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
2022-10-06 19:08:50 -05:00
|
|
|
int print_sdc_disable_timing_configure_ports(
|
|
|
|
const std::string& sdc_fname, const bool& flatten_names,
|
|
|
|
const MuxLibrary& mux_lib, const CircuitLibrary& circuit_lib,
|
|
|
|
const ModuleManager& module_manager, const bool& include_time_stamp,
|
|
|
|
const bool& verbose);
|
2020-05-14 17:53:15 -05:00
|
|
|
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|