mirror of https://github.com/YosysHQ/yosys.git
20 lines
731 B
CMake
20 lines
731 B
CMake
add_library(yosys_techlibs_intel INTERFACE)
|
|
|
|
target_sources(yosys_techlibs_intel INTERFACE
|
|
synth_intel.cc
|
|
)
|
|
|
|
target_link_libraries(yosys PRIVATE yosys_techlibs_intel)
|
|
|
|
add_share_file("share/intel/common" "common/m9k_bb.v")
|
|
add_share_file("share/intel/common" "common/altpll_bb.v")
|
|
add_share_file("share/intel/common" "common/brams_m9k.txt")
|
|
add_share_file("share/intel/common" "common/brams_map_m9k.v")
|
|
add_share_file("share/intel/common" "common/ff_map.v")
|
|
|
|
# Add the cell models and mappings for the VQM backend
|
|
foreach(family IN ITEMS max10 cyclone10lp cycloneiv cycloneive)
|
|
add_share_file("share/intel/${family}" "${family}/cells_sim.v")
|
|
add_share_file("share/intel/${family}" "${family}/cells_map.v")
|
|
endforeach()
|