OpenFPGA/openfpga/src/fpga_spice/spice_essential_gates.h

31 lines
1.1 KiB
C
Raw Normal View History

2020-07-05 13:10:12 -05:00
#ifndef SPICE_ESSENTIAL_GATES_H
#define SPICE_ESSENTIAL_GATES_H
/********************************************************************
* Include header files that are required by function declaration
*******************************************************************/
#include <string>
#include <map>
2020-07-05 13:10:12 -05:00
#include "netlist_manager.h"
#include "module_manager.h"
#include "circuit_library.h"
2020-07-05 15:50:29 -05:00
#include "technology_library.h"
2020-07-05 13:10:12 -05:00
/********************************************************************
* Function declaration
*******************************************************************/
/* begin namespace openfpga */
namespace openfpga {
int print_spice_essential_gates(NetlistManager& netlist_manager,
const ModuleManager& module_manager,
const CircuitLibrary& circuit_lib,
const TechnologyLibrary& tech_lib,
const std::map<CircuitModelId, TechnologyModelId>& circuit_tech_binding,
const std::string& submodule_dir);
2020-07-05 13:10:12 -05:00
} /* end namespace openfpga */
#endif