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"
|
2020-04-23 21:42:11 -05:00
|
|
|
#include "netlist_manager.h"
|
2020-02-16 17:04:41 -06:00
|
|
|
#include "vpr_device_annotation.h"
|
2021-02-28 12:57:40 -06:00
|
|
|
#include "fabric_verilog_options.h"
|
2020-02-16 17:04:41 -06:00
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
2020-04-23 21:42:11 -05:00
|
|
|
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,
|
2021-02-28 12:57:40 -06:00
|
|
|
const FabricVerilogOption& options,
|
2020-02-16 17:04:41 -06:00
|
|
|
const bool& verbose);
|
|
|
|
|
|
|
|
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|