27 lines
876 B
C++
27 lines
876 B
C++
#ifndef OPENFPGA_BITSTREAM_H
|
|
#define OPENFPGA_BITSTREAM_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 {
|
|
|
|
void fpga_bitstream(OpenfpgaContext& openfpga_ctx,
|
|
const Command& cmd, const CommandContext& cmd_context);
|
|
|
|
void build_fabric_bitstream(OpenfpgaContext& openfpga_ctx,
|
|
const Command& cmd, const CommandContext& cmd_context);
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
#endif
|