OpenFPGA/openfpga/src/fpga_verilog/verilog_module_writer.h

27 lines
821 B
C
Raw Normal View History

2020-02-16 13:04:03 -06:00
#ifndef VERILOG_MODULE_WRITER_H
#define VERILOG_MODULE_WRITER_H
/********************************************************************
* Include header files that are required by function declaration
*******************************************************************/
#include <fstream>
2020-02-16 13:04:03 -06:00
#include "module_manager.h"
#include "verilog_port_types.h"
2020-02-16 13:04:03 -06:00
/********************************************************************
* Function declaration
*******************************************************************/
/* begin namespace openfpga */
namespace openfpga {
void write_verilog_module_to_file(
std::fstream& fp, const ModuleManager& module_manager,
const ModuleId& module_id, const bool& use_explicit_port_map,
const e_verilog_default_net_type& default_net_type);
2020-02-16 13:04:03 -06:00
} /* end namespace openfpga */
#endif