- Created a new Block Design Archive (lab_3.bda) for LAB3, defining nodes and edges for the design. - Added a placeholder README file in the simulation directory. - Initialized a Vivado project file (lab3.xpr) with configuration settings and source files for synthesis and simulation. - Updated vhdl_ls.toml to include LAB3 source and simulation files for VHDL language server support.
31 lines
541 B
TOML
31 lines
541 B
TOML
[libraries]
|
|
# Assign separate libraries for each project
|
|
lab0_lib.files = [
|
|
"LAB0/src/**/*.vhd",
|
|
"LAB0/sim/**/*.vhd"
|
|
]
|
|
|
|
lab1_lib.files = [
|
|
"LAB1/src/**/*.vhd",
|
|
"LAB1/sim/**/*.vhd"
|
|
]
|
|
|
|
lab2_lib.files = [
|
|
"LAB2/src/*.vhd",
|
|
"LAB2/sim/**/*.vhd"
|
|
]
|
|
|
|
lab3_lib.files = [
|
|
"LAB3/src/**/*.vhd",
|
|
"LAB3/sim/**/*.vhd"
|
|
]
|
|
|
|
xpm.files = [
|
|
"C:/Xilinx/Vivado/2020.2/data/ip/xpm/xpm_VCOMP.vhd"
|
|
]
|
|
xpm.is_third_party = true
|
|
|
|
unisim.files = [
|
|
"C:/Xilinx/Vivado/2020.2/data/vhdl/src/unisims/**/*.vhd"
|
|
]
|
|
unisim.is_third_party = true |