2020-01-15 21:28:04 -06:00
|
|
|
#ifndef READ_XML_OPENFPGA_ARCH_H
|
|
|
|
#define READ_XML_OPENFPGA_ARCH_H
|
|
|
|
|
2020-01-16 13:32:29 -06:00
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
2020-01-15 21:28:04 -06:00
|
|
|
#include <string>
|
2022-10-06 19:08:50 -05:00
|
|
|
|
|
|
|
#include "bitstream_setting.h"
|
2020-01-15 21:28:04 -06:00
|
|
|
#include "openfpga_arch.h"
|
2021-02-01 18:43:46 -06:00
|
|
|
#include "simulation_setting.h"
|
2020-01-15 21:28:04 -06:00
|
|
|
|
2020-01-16 13:32:29 -06:00
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
2020-01-16 21:22:56 -06:00
|
|
|
openfpga::Arch read_xml_openfpga_arch(const char* arch_file_name);
|
2020-01-15 21:28:04 -06:00
|
|
|
|
2022-10-06 19:08:50 -05:00
|
|
|
openfpga::SimulationSetting read_xml_openfpga_simulation_settings(
|
|
|
|
const char* sim_setting_file_name);
|
2020-06-10 16:10:19 -05:00
|
|
|
|
2022-10-06 19:08:50 -05:00
|
|
|
openfpga::BitstreamSetting read_xml_openfpga_bitstream_settings(
|
|
|
|
const char* bitstream_setting_file_name);
|
2021-02-01 18:43:46 -06:00
|
|
|
|
2020-01-15 21:28:04 -06:00
|
|
|
#endif
|