2019-10-07 17:03:15 -05:00
|
|
|
/********************************************************************
|
|
|
|
* Header file for verilog_grid.cpp
|
|
|
|
*******************************************************************/
|
|
|
|
#ifndef VERILOG_GRID_H
|
|
|
|
#define VERILOG_GRID_H
|
|
|
|
|
|
|
|
/* Only include headers related to the data structures used in the following function declaration */
|
|
|
|
#include <string>
|
|
|
|
#include "vpr_types.h"
|
|
|
|
#include "module_manager.h"
|
|
|
|
#include "mux_library.h"
|
|
|
|
|
|
|
|
void print_verilog_grids(ModuleManager& module_manager,
|
|
|
|
const std::string& verilog_dir,
|
|
|
|
const std::string& subckt_dir,
|
2019-10-22 17:14:11 -05:00
|
|
|
const bool& use_explicit_mapping);
|
2019-10-07 17:03:15 -05:00
|
|
|
|
|
|
|
#endif
|