2020-01-18 22:19:20 -06:00
|
|
|
#ifndef OPENFPGA_ARCH_LINKER_H
|
|
|
|
#define OPENFPGA_ARCH_LINKER_H
|
|
|
|
|
|
|
|
#include "openfpga_arch.h"
|
|
|
|
|
|
|
|
void link_config_protocol_to_circuit_library(openfpga::Arch& openfpga_arch);
|
|
|
|
|
2020-07-13 21:35:10 -05:00
|
|
|
void bind_circuit_model_to_technology_model(openfpga::Arch& openfpga_arch);
|
|
|
|
|
2022-10-06 19:08:50 -05:00
|
|
|
void config_circuit_models_sram_port_to_default_sram_model(
|
|
|
|
CircuitLibrary& circuit_lib, const CircuitModelId& default_sram_model);
|
2020-02-12 16:19:40 -06:00
|
|
|
|
2020-01-18 22:19:20 -06:00
|
|
|
#endif
|