2020-01-28 16:13:14 -06:00
|
|
|
#ifndef OPENFPGA_LINK_ARCH_H
|
|
|
|
#define OPENFPGA_LINK_ARCH_H
|
2020-01-27 16:31:12 -06:00
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
2020-01-31 12:36:58 -06:00
|
|
|
#include "command.h"
|
|
|
|
#include "command_context.h"
|
2020-01-27 16:31:12 -06:00
|
|
|
#include "openfpga_context.h"
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
2020-04-08 17:18:05 -05:00
|
|
|
int link_arch(OpenfpgaContext& openfpga_context,
|
|
|
|
const Command& cmd, const CommandContext& cmd_context);
|
2020-01-27 16:31:12 -06:00
|
|
|
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|