OpenFPGA/openfpga/src/fpga_verilog/verilog_grid.h

31 lines
1.0 KiB
C
Raw Normal View History

2020-02-16 17:04:41 -06:00
#ifndef VERILOG_GRID_H
#define VERILOG_GRID_H
/********************************************************************
* Include header files that are required by function declaration
*******************************************************************/
#include <string>
#include "vpr_context.h"
#include "module_manager.h"
#include "vpr_device_annotation.h"
/********************************************************************
* Function declaration
*******************************************************************/
/* begin namespace openfpga */
namespace openfpga {
void print_verilog_grids(const ModuleManager& module_manager,
const DeviceContext& device_ctx,
const VprDeviceAnnotation& device_annotation,
const std::string& verilog_dir,
const std::string& subckt_dir,
const bool& use_explicit_mapping,
const bool& verbose);
} /* end namespace openfpga */
#endif