OpenFPGA/openfpga/src/fpga_spice/spice_essential_gates.h

23 lines
717 B
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 "netlist_manager.h"
/********************************************************************
* Function declaration
*******************************************************************/
/* begin namespace openfpga */
namespace openfpga {
void print_spice_transistor_wrapper(NetlistManager& netlist_manager,
const std::string& submodule_dir);
} /* end namespace openfpga */
#endif