21 lines
785 B
C++
21 lines
785 B
C++
#ifndef WRITE_XML_OPENFPGA_ARCH_H
|
|
#define WRITE_XML_OPENFPGA_ARCH_H
|
|
|
|
/********************************************************************
|
|
* Include header files that are required by function declaration
|
|
*******************************************************************/
|
|
#include <string>
|
|
#include "openfpga_arch.h"
|
|
|
|
/********************************************************************
|
|
* Function declaration
|
|
*******************************************************************/
|
|
void write_xml_openfpga_arch(const char* xml_fname,
|
|
const openfpga::Arch& openfpga_arch);
|
|
|
|
void write_xml_openfpga_simulation_settings(const char* xml_fname,
|
|
const openfpga::SimulationSetting& openfpga_sim_setting);
|
|
|
|
|
|
#endif
|