OpenFPGA/openfpga/src/fpga_bitstream/write_text_fabric_bitstream.h

28 lines
978 B
C
Raw Normal View History

2020-07-26 22:00:57 -05:00
#ifndef WRITE_TEXT_FABRIC_BITSTREAM_H
#define WRITE_TEXT_FABRIC_BITSTREAM_H
2020-02-23 21:40:18 -06:00
/********************************************************************
* Include header files that are required by function declaration
*******************************************************************/
#include <string>
2020-04-21 13:02:10 -05:00
#include <vector>
2020-02-23 21:40:18 -06:00
#include "bitstream_manager.h"
#include "fabric_bitstream.h"
#include "config_protocol.h"
2020-02-23 21:40:18 -06:00
/********************************************************************
* Function declaration
*******************************************************************/
/* begin namespace openfpga */
namespace openfpga {
int write_fabric_bitstream_to_text_file(const BitstreamManager& bitstream_manager,
const FabricBitstream& fabric_bitstream,
const ConfigProtocol& config_protocol,
const std::string& fname);
2020-02-23 21:40:18 -06:00
} /* end namespace openfpga */
#endif