2020-01-23 20:10:53 -06:00
|
|
|
#ifndef OPENFPGA_READ_ARCH_COMMAND_H
|
|
|
|
#define OPENFPGA_READ_ARCH_COMMAND_H
|
2020-01-23 15:42:49 -06:00
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
2020-01-23 20:10:53 -06:00
|
|
|
#include "command.h"
|
|
|
|
#include "command_context.h"
|
2020-01-23 15:42:49 -06:00
|
|
|
#include "openfpga_context.h"
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
2020-04-08 17:18:05 -05:00
|
|
|
int read_arch(OpenfpgaContext& openfpga_context,
|
|
|
|
const Command& cmd, const CommandContext& cmd_context);
|
2020-01-23 15:42:49 -06:00
|
|
|
|
2020-04-08 17:18:05 -05:00
|
|
|
int write_arch(const OpenfpgaContext& openfpga_context,
|
|
|
|
const Command& cmd, const CommandContext& cmd_context);
|
2020-01-23 21:58:15 -06:00
|
|
|
|
2020-06-10 16:23:32 -05:00
|
|
|
int read_simulation_setting(OpenfpgaContext& openfpga_context,
|
|
|
|
const Command& cmd, const CommandContext& cmd_context);
|
|
|
|
|
|
|
|
int write_simulation_setting(const OpenfpgaContext& openfpga_context,
|
|
|
|
const Command& cmd, const CommandContext& cmd_context);
|
|
|
|
|
2020-01-23 15:42:49 -06:00
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|