2019-09-16 18:35:51 -05:00
|
|
|
/***********************************************
|
|
|
|
* Header file for verilog_routing.cpp
|
|
|
|
**********************************************/
|
2019-06-08 21:11:22 -05:00
|
|
|
#ifndef VERILOG_ROUTING_H
|
|
|
|
#define VERILOG_ROUTING_H
|
2019-09-16 18:35:51 -05:00
|
|
|
|
|
|
|
/* Include other header files which are dependency on the function declared below */
|
2019-09-17 21:40:26 -05:00
|
|
|
#include "mux_library.h"
|
2019-09-16 18:35:51 -05:00
|
|
|
#include "module_manager.h"
|
2019-10-15 17:08:51 -05:00
|
|
|
#include "rr_blocks.h"
|
2019-09-16 18:35:51 -05:00
|
|
|
|
2019-10-23 12:46:55 -05:00
|
|
|
void print_verilog_flatten_routing_modules(ModuleManager& module_manager,
|
|
|
|
const DeviceRRGSB& L_device_rr_gsb,
|
|
|
|
const t_det_routing_arch& routing_arch,
|
|
|
|
const std::string& verilog_dir,
|
|
|
|
const std::string& subckt_dir,
|
|
|
|
const bool& use_explicit_port_map);
|
|
|
|
|
|
|
|
void print_verilog_unique_routing_modules(ModuleManager& module_manager,
|
|
|
|
const DeviceRRGSB& L_device_rr_gsb,
|
|
|
|
const t_det_routing_arch& routing_arch,
|
|
|
|
const std::string& verilog_dir,
|
|
|
|
const std::string& subckt_dir,
|
|
|
|
const bool& use_explicit_port_map);
|
|
|
|
|
2019-06-08 21:11:22 -05:00
|
|
|
#endif
|