2020-02-28 12:14:50 -06:00
|
|
|
#ifndef OPENFPGA_SDC_COMMAND_H
|
|
|
|
#define OPENFPGA_SDC_COMMAND_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include "openfpga_context.h"
|
2022-10-06 19:08:50 -05:00
|
|
|
#include "shell.h"
|
2020-02-28 12:14:50 -06:00
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
2022-10-06 19:08:50 -05:00
|
|
|
void add_openfpga_sdc_commands(openfpga::Shell<OpenfpgaContext>& shell);
|
2020-02-28 12:14:50 -06:00
|
|
|
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|