2020-02-28 12:14:50 -06:00
|
|
|
/********************************************************************
|
2022-10-06 19:08:50 -05:00
|
|
|
* Add commands to the OpenFPGA shell interface,
|
2020-02-28 12:14:50 -06:00
|
|
|
* in purpose of generate SDC files
|
|
|
|
* - write_pnr_sdc : generate SDC to constrain the back-end flow for FPGA fabric
|
|
|
|
* - write_analysis_sdc: TODO: generate SDC based on users' implementations
|
|
|
|
*******************************************************************/
|
|
|
|
#include "openfpga_sdc_command.h"
|
|
|
|
|
2023-01-06 23:11:12 -06:00
|
|
|
#include "openfpga_sdc_command_template.h"
|
|
|
|
|
2020-02-28 12:14:50 -06:00
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
|
|
|
void add_openfpga_sdc_commands(openfpga::Shell<OpenfpgaContext>& shell) {
|
2023-01-06 21:22:51 -06:00
|
|
|
add_openfpga_sdc_command_templates<OpenfpgaContext>(shell);
|
2022-10-06 19:08:50 -05:00
|
|
|
}
|
2020-02-28 12:14:50 -06:00
|
|
|
|
|
|
|
} /* end namespace openfpga */
|