2020-02-15 16:03:00 -06:00
|
|
|
#ifndef VERILOG_API_H
|
|
|
|
#define VERILOG_API_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include "vpr_types.h"
|
|
|
|
#include "mux_library.h"
|
|
|
|
#include "circuit_library.h"
|
|
|
|
#include "device_grid.h"
|
|
|
|
#include "device_rr_gsb.h"
|
|
|
|
#include "module_manager.h"
|
2020-02-15 22:39:47 -06:00
|
|
|
#include "verilog_options.h"
|
2020-02-15 16:03:00 -06:00
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
2020-02-15 21:38:45 -06:00
|
|
|
void fpga_fabric_verilog(const ModuleManager& module_manager,
|
|
|
|
const CircuitLibrary& circuit_lib,
|
|
|
|
const MuxLibrary& mux_lib,
|
|
|
|
const DeviceGrid& grids,
|
|
|
|
const DeviceRRGSB& device_rr_gsb,
|
2020-02-15 22:39:47 -06:00
|
|
|
const FabricVerilogOption& options);
|
2020-02-15 16:03:00 -06:00
|
|
|
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|