2020-01-23 20:10:53 -06:00
|
|
|
/********************************************************************
|
2022-10-06 19:08:50 -05:00
|
|
|
* Add commands to the OpenFPGA shell interface,
|
2020-01-23 20:10:53 -06:00
|
|
|
* in purpose of setting up OpenFPGA core engine, including:
|
|
|
|
* - read_openfpga_arch : read OpenFPGA architecture file
|
|
|
|
*******************************************************************/
|
2022-10-06 19:08:50 -05:00
|
|
|
#include "openfpga_setup_command.h"
|
2023-01-06 23:11:12 -06:00
|
|
|
|
2023-01-06 22:52:37 -06:00
|
|
|
#include "openfpga_setup_command_template.h"
|
2020-01-23 20:10:53 -06:00
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
2020-02-29 14:29:16 -06:00
|
|
|
void add_openfpga_setup_commands(openfpga::Shell<OpenfpgaContext>& shell) {
|
2023-01-06 22:52:37 -06:00
|
|
|
add_setup_command_templates<OpenfpgaContext>(shell);
|
2022-10-06 19:08:50 -05:00
|
|
|
}
|
2020-01-23 20:10:53 -06:00
|
|
|
|
|
|
|
} /* end namespace openfpga */
|