2020-07-05 13:10:12 -05:00
|
|
|
#ifndef SPICE_API_H
|
|
|
|
#define SPICE_API_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include "netlist_manager.h"
|
|
|
|
#include "module_manager.h"
|
2020-07-05 15:50:29 -05:00
|
|
|
#include "technology_library.h"
|
2020-07-05 13:10:12 -05:00
|
|
|
#include "fabric_spice_options.h"
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
2020-07-05 15:50:29 -05:00
|
|
|
int fpga_fabric_spice(const ModuleManager& module_manager,
|
|
|
|
NetlistManager& netlist_manager,
|
|
|
|
const TechnologyLibrary& tech_lib,
|
|
|
|
const FabricSpiceOption& options);
|
2020-07-05 13:10:12 -05:00
|
|
|
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|