OpenFPGA/openfpga/src/fabric/build_device_module.h

29 lines
1004 B
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 "fabric_key.h"
#include "openfpga_context.h"
#include "vpr_context.h"
2020-02-12 18:53:23 -06:00
/********************************************************************
* Function declaration
*******************************************************************/
/* begin namespace openfpga */
namespace openfpga {
int build_device_module_graph(
ModuleManager& module_manager, DecoderLibrary& decoder_lib,
MemoryBankShiftRegisterBanks& blwl_sr_banks,
const OpenfpgaContext& openfpga_ctx, const DeviceContext& vpr_device_ctx,
const bool& frame_view, const bool& compress_routing,
const bool& duplicate_grid_pin, const FabricKey& fabric_key,
const bool& generate_random_fabric_key, const bool& verbose);
2020-02-12 18:53:23 -06:00
} /* end namespace openfpga */
#endif