#ifndef VERILOG_TOP_MODULE_H #define VERILOG_TOP_MODULE_H /******************************************************************** * Include header files that are required by function declaration *******************************************************************/ #include #include "module_manager.h" #include "netlist_manager.h" /******************************************************************** * Function declaration *******************************************************************/ /* begin namespace openfpga */ namespace openfpga { void print_verilog_top_module(NetlistManager& netlist_manager, const ModuleManager& module_manager, const std::string& verilog_dir, const bool& use_explicit_mapping); } /* end namespace openfpga */ #endif