OpenFPGA/libopenfpga/libarchopenfpga/src/openfpga_arch.h

21 lines
423 B
C
Raw Normal View History

#ifndef OPENFPGA_ARCH_H
#define OPENFPGA_ARCH_H
#include "circuit_library.h"
#include "technology_library.h"
/* namespace openfpga begins */
namespace openfpga {
/* A unified data structure to store circuit-level settings,
* including circuit library, technology library and simulation parameters
*/
struct Arch {
CircuitLibrary circuit_lib;
TechnologyLibrary tech_lib;
};
} /* namespace openfpga ends */
#endif