2022-03-29 06:41:15 -05:00
|
|
|
#ifndef REPORT_FABRIC_BITSTREAM_DISTRIBUTION_H
|
|
|
|
#define REPORT_FABRIC_BITSTREAM_DISTRIBUTION_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include <string>
|
2022-10-06 19:08:50 -05:00
|
|
|
|
2022-03-29 06:41:15 -05:00
|
|
|
#include "fabric_bitstream.h"
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
2022-10-06 19:08:50 -05:00
|
|
|
int report_fabric_bitstream_distribution(
|
|
|
|
std::fstream& fp, const FabricBitstream& fabric_bitstream,
|
|
|
|
const int& hierarchy_level);
|
2022-03-29 06:41:15 -05:00
|
|
|
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|