2020-02-15 21:54:37 -06:00
|
|
|
#ifndef OPENFPGA_VERILOG_H
|
|
|
|
#define OPENFPGA_VERILOG_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include "command.h"
|
|
|
|
#include "command_context.h"
|
|
|
|
#include "openfpga_context.h"
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
2020-04-08 17:18:05 -05:00
|
|
|
int write_fabric_verilog(OpenfpgaContext& openfpga_ctx,
|
|
|
|
const Command& cmd, const CommandContext& cmd_context);
|
2020-02-15 21:54:37 -06:00
|
|
|
|
2021-06-08 22:28:16 -05:00
|
|
|
int write_full_testbench(const OpenfpgaContext& openfpga_ctx,
|
2021-06-03 16:37:49 -05:00
|
|
|
const Command& cmd, const CommandContext& cmd_context);
|
|
|
|
|
2021-06-08 22:28:16 -05:00
|
|
|
int write_preconfigured_fabric_wrapper(const OpenfpgaContext& openfpga_ctx,
|
|
|
|
const Command& cmd, const CommandContext& cmd_context);
|
|
|
|
|
2021-06-08 22:53:51 -05:00
|
|
|
int write_preconfigured_testbench(const OpenfpgaContext& openfpga_ctx,
|
|
|
|
const Command& cmd, const CommandContext& cmd_context);
|
|
|
|
|
2021-06-08 23:10:02 -05:00
|
|
|
int write_simulation_task_info(const OpenfpgaContext& openfpga_ctx,
|
|
|
|
const Command& cmd, const CommandContext& cmd_context);
|
|
|
|
|
2020-02-15 21:54:37 -06:00
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|