2019-09-12 21:49:02 -05:00
|
|
|
/***********************************************
|
|
|
|
* Header file for verilog_wire.cpp
|
|
|
|
**********************************************/
|
|
|
|
|
|
|
|
#ifndef VERILOG_WIRE_H
|
|
|
|
#define VERILOG_WIRE_H
|
|
|
|
|
|
|
|
/* Include other header files which are dependency on the function declared below */
|
|
|
|
#include <fstream>
|
|
|
|
#include <vector>
|
|
|
|
#include "physical_types.h"
|
|
|
|
#include "vpr_types.h"
|
|
|
|
|
|
|
|
#include "circuit_library.h"
|
|
|
|
#include "module_manager.h"
|
|
|
|
|
|
|
|
void print_verilog_submodule_wires(ModuleManager& module_manager,
|
2019-12-04 18:55:05 -06:00
|
|
|
std::vector<std::string>& netlist_names,
|
2019-09-12 21:49:02 -05:00
|
|
|
const CircuitLibrary& circuit_lib,
|
|
|
|
const std::string& verilog_dir,
|
|
|
|
const std::string& submodule_dir);
|
|
|
|
|
|
|
|
#endif
|