标签:opt files USED Syntax vivado design post
USED_IN属性被分配给Vivado design中的设计文件(.vh、.vhd、.xdc、.tcl)
套件,用于指示文件在FPGA设计流程中的哪个阶段使用。
例如,您可以使用USED_IN属性指定XDC文件供
Vivado合成工具,但不用于实现。您还可以指定HDL源
文件(.vh或.vhd)作为USED_IN模拟,但不用于合成。
提示:USED_IN_SYNTHESIS、USED_IN_SIMULATION和USED_IN_ IMPLEMENTATION属性是
与USED_IN属性相关并且由工具自动转换为USED_IN({合成,
仿真、实现}。
您还可以使用更细粒度的值将非托管Tcl文件指定为USED_IN
opt_design或place_design,而不是简单地在实现中使用。
架构支持
所有架构。
适用对象
•文件
Values
• synthesis
• synthesis_post
• implementation
• simulation
• out_of_context
• opt_design
• opt_design_post
• power_opt_design
• power_opt_design_post
• place_design
• place_design_post
• phys_opt_design
• phys_opt_design_post
• route_design
• route_design_post
• write_bitstream
• write_bitstream_post
• synth_blackbox_stub
• testbench
• board
• single_language
• power_data
Syntax
Verilog and VHDL Syntax
Not applicable
XDC Syntax
set_property USED_IN {
<value>
} [get_files
<files>
]
Where
•
<value>
specifies one or more of the valid USED_IN values.
•
<files>
is the name or names of the files to set the USED_IN property.
XDC Syntax Example
# Designates the specified files as used in simulation
set_property USED_IN {synthesis simulation} [get_files *.vhdl]
标签:opt,
files,
USED,
Syntax,
vivado,
design,
post
From: https://blog.csdn.net/cckkppll/article/details/141690829