OpenFPGA/vpr7_x2p/vpr/SRC/fpga_x2p/verilog/verilog_grid.h

19 lines
656 B
C
Raw Normal View History

/********************************************************************
* 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);
#endif