OpenFPGA/openfpga/src/base/openfpga_verilog.h

27 lines
883 B
C
Raw Normal View History

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 {
int write_fabric_verilog(OpenfpgaContext& openfpga_ctx,
const Command& cmd, const CommandContext& cmd_context);
2020-02-15 21:54:37 -06:00
int write_verilog_testbench(OpenfpgaContext& openfpga_ctx,
const Command& cmd, const CommandContext& cmd_context);
2020-02-15 21:54:37 -06:00
} /* end namespace openfpga */
#endif