OpenFPGA/openfpga/src/fpga_spice/spice_submodule.h

27 lines
890 B
C
Raw Normal View History

2020-07-05 13:10:12 -05:00
#ifndef SPICE_SUBMODULE_H
#define SPICE_SUBMODULE_H
/********************************************************************
* Include header files that are required by function declaration
*******************************************************************/
#include "module_manager.h"
#include "mux_library.h"
#include "netlist_manager.h"
#include "openfpga_arch.h"
2020-07-05 13:10:12 -05:00
/********************************************************************
* Function declaration
*******************************************************************/
/* begin namespace openfpga */
namespace openfpga {
2020-07-05 15:50:29 -05:00
int print_spice_submodule(NetlistManager& netlist_manager,
const ModuleManager& module_manager,
const Arch& openfpga_arch, const MuxLibrary& mux_lib,
2020-07-05 15:50:29 -05:00
const std::string& submodule_dir);
2020-07-05 13:10:12 -05:00
} /* end namespace openfpga */
#endif