OpenFPGA/openfpga/src/fpga_verilog/verilog_grid.h

33 lines
1.1 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 "netlist_manager.h"
2020-02-16 17:04:41 -06:00
#include "vpr_device_annotation.h"
#include "fabric_verilog_options.h"
2020-02-16 17:04:41 -06:00
/********************************************************************
* Function declaration
*******************************************************************/
/* begin namespace openfpga */
namespace openfpga {
void print_verilog_grids(NetlistManager& netlist_manager,
const ModuleManager& module_manager,
2020-02-16 17:04:41 -06:00
const DeviceContext& device_ctx,
const VprDeviceAnnotation& device_annotation,
const std::string& subckt_dir,
const FabricVerilogOption& options,
2020-02-16 17:04:41 -06:00
const bool& verbose);
} /* end namespace openfpga */
#endif