2020-02-28 12:14:50 -06:00
|
|
|
#ifndef OPENFPGA_SDC_H
|
|
|
|
#define OPENFPGA_SDC_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include "command.h"
|
|
|
|
#include "command_context.h"
|
|
|
|
#include "openfpga_context.h"
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
2020-05-14 20:59:39 -05:00
|
|
|
int write_pnr_sdc(const OpenfpgaContext& openfpga_ctx,
|
2020-04-08 17:18:05 -05:00
|
|
|
const Command& cmd, const CommandContext& cmd_context);
|
2020-02-28 12:14:50 -06:00
|
|
|
|
2020-05-12 21:44:53 -05:00
|
|
|
int write_configuration_chain_sdc(const OpenfpgaContext& openfpga_ctx,
|
|
|
|
const Command& cmd, const CommandContext& cmd_context);
|
|
|
|
|
2020-05-14 17:53:15 -05:00
|
|
|
int write_sdc_disable_timing_configure_ports(const OpenfpgaContext& openfpga_ctx,
|
|
|
|
const Command& cmd, const CommandContext& cmd_context);
|
|
|
|
|
2020-05-14 20:59:39 -05:00
|
|
|
int write_analysis_sdc(const OpenfpgaContext& openfpga_ctx,
|
2020-04-08 17:18:05 -05:00
|
|
|
const Command& cmd, const CommandContext& cmd_context);
|
2020-03-02 20:54:18 -06:00
|
|
|
|
2020-02-28 12:14:50 -06:00
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|