2021-04-27 15:30:16 -05:00
|
|
|
#ifndef WRITE_XML_IO_MAPPING_H
|
|
|
|
#define WRITE_XML_IO_MAPPING_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2022-10-06 19:08:50 -05:00
|
|
|
|
2021-04-27 15:30:16 -05:00
|
|
|
#include "io_map.h"
|
2022-10-06 19:08:50 -05:00
|
|
|
#include "vpr_context.h"
|
2021-04-27 15:30:16 -05:00
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
2022-10-06 19:08:50 -05:00
|
|
|
int write_io_mapping_to_xml_file(const IoMap& io_map, const std::string& fname,
|
2022-01-25 15:37:54 -06:00
|
|
|
const bool& include_time_stamp,
|
2021-04-27 15:30:16 -05:00
|
|
|
const bool& verbose);
|
|
|
|
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|