OpenFPGA/openfpga/src/fpga_verilog/verilog_module_writer.h

25 lines
831 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>
#include "module_manager.h"
/********************************************************************
* 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);
} /* end namespace openfpga */
#endif