2020-03-25 15:38:13 -05:00
|
|
|
#ifndef PNR_SDC_GLBOAL_PORT_H
|
|
|
|
#define PNR_SDC_GLBOAL_PORT_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2020-11-10 22:17:17 -06:00
|
|
|
#include "module_manager.h"
|
|
|
|
#include "fabric_global_port_info.h"
|
2021-01-15 13:01:53 -06:00
|
|
|
#include "simulation_setting.h"
|
2020-03-25 15:38:13 -05:00
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
|
|
|
void print_pnr_sdc_global_ports(const std::string& sdc_dir,
|
2020-11-10 22:17:17 -06:00
|
|
|
const ModuleManager& module_manager,
|
|
|
|
const ModuleId& top_module,
|
|
|
|
const FabricGlobalPortInfo& global_ports,
|
2021-01-15 13:01:53 -06:00
|
|
|
const SimulationSetting& sim_setting,
|
2020-03-25 15:38:13 -05:00
|
|
|
const bool& constrain_non_clock_port);
|
|
|
|
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|