2020-02-16 12:57:19 -06:00
|
|
|
#ifndef VERILOG_ESSENTIAL_GATES_H
|
|
|
|
#define VERILOG_ESSENTIAL_GATES_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include <string>
|
|
|
|
#include "circuit_library.h"
|
2020-04-23 21:42:11 -05:00
|
|
|
#include "module_manager.h"
|
|
|
|
#include "netlist_manager.h"
|
2021-02-28 12:57:40 -06:00
|
|
|
#include "verilog_port_types.h"
|
2020-02-16 12:57:19 -06:00
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
2020-02-16 17:35:26 -06:00
|
|
|
void print_verilog_submodule_essentials(const ModuleManager& module_manager,
|
2020-04-23 21:42:11 -05:00
|
|
|
NetlistManager& netlist_manager,
|
2020-02-16 12:57:19 -06:00
|
|
|
const std::string& submodule_dir,
|
2021-02-28 12:57:40 -06:00
|
|
|
const CircuitLibrary& circuit_lib,
|
|
|
|
const e_verilog_default_net_type& default_net_type);
|
2020-02-16 12:57:19 -06:00
|
|
|
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|