OpenFPGA/openfpga/src/fpga_bitstream/write_text_fabric_bitstream.h

35 lines
1.1 KiB
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 "config_protocol.h"
#include "fabric_bitstream.h"
#include "fabric_global_port_info.h"
#include "memory_bank_shift_register_banks.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 MemoryBankShiftRegisterBanks& blwl_sr_banks,
const ConfigProtocol& config_protocol,
const FabricGlobalPortInfo& global_ports, const std::string& fname,
const bool& fast_configuration, const bool& keep_dont_care_bits,
const bool& include_time_stamp, const bool& verbose);
2020-02-23 21:40:18 -06:00
} /* end namespace openfpga */
#endif