OpenFPGA/openfpga/src/fabric/build_device_module.h

29 lines
1.1 KiB
C
Raw Normal View History

2020-02-12 18:53:23 -06:00
#ifndef BUILD_DEVICE_MODULE_H
#define BUILD_DEVICE_MODULE_H
/********************************************************************
* Include header files that are required by function declaration
*******************************************************************/
#include "vpr_context.h"
#include "openfpga_context.h"
/********************************************************************
* Function declaration
*******************************************************************/
/* begin namespace openfpga */
namespace openfpga {
2020-02-26 20:58:18 -06:00
ModuleManager build_device_module_graph(IoLocationMap& io_location_map,
2020-05-25 23:15:16 -05:00
DecoderLibrary& decoder_lib,
const OpenfpgaContext& openfpga_ctx,
2020-05-25 23:15:16 -05:00
const DeviceContext& vpr_device_ctx,
2020-02-13 18:35:29 -06:00
const bool& compress_routing,
const bool& duplicate_grid_pin,
const bool& generate_random_fabric_key,
const bool& verbose);
2020-02-12 18:53:23 -06:00
} /* end namespace openfpga */
#endif