@hongh
我尝试使用Vivado 2018.2采用相同的方法
get_cells -hier -filter {NAME = ~design_1_i / axi_xor_2018_0 / U0 / axi_xor_2018_v1_0_S00_AXI_inst / *}
给出一个列表,其中包含带有标签EXORS的exor门实例化。
然而,
get_cells -hier -filter {NAME = ~design_1_i / axi_xor_2018_0 / U0 / axi_xor_2018_v1_0_S00_AXI_inst / *&&
REF_NAME = ~LUT *}
返回一个不包含我的exor门实例化的列表。
如果我使用
get_property LOC [get_cells design_1_i / axi_xor_2018_0 / U0 / axi_xor_2018_v1_0_S00_AXI_inst / EXORS]
它返回空列表。
我不确定为什么我的xor IP LUT在层次结构中看不到。
谢谢。
以上来自于谷歌翻译
以下为原文
@hongh
I tried the same approach using Vivado 2018.2
get_cells -hier -filter {NAME =~design_1_i/axi_xor_2018_0/U0/axi_xor_2018_v1_0_S00_AXI_inst/*}
gives a list that contains my exor gate instantiation with label EXORS.
However,
get_cells -hier -filter {NAME =~design_1_i/axi_xor_2018_0/U0/axi_xor_2018_v1_0_S00_AXI_inst/* && REF_NAME =~ LUT*}
returns a list that does not contain my exor gate instantiation.
If I use
get_property LOC [get_cells design_1_i/axi_xor_2018_0/U0/axi_xor_2018_v1_0_S00_AXI_inst/EXORS]
it returns empty list.
I am not sure why my xor IP LUTs could not be seen in the hierarchy.
Thanks.
@hongh
我尝试使用Vivado 2018.2采用相同的方法
get_cells -hier -filter {NAME = ~design_1_i / axi_xor_2018_0 / U0 / axi_xor_2018_v1_0_S00_AXI_inst / *}
给出一个列表,其中包含带有标签EXORS的exor门实例化。
然而,
get_cells -hier -filter {NAME = ~design_1_i / axi_xor_2018_0 / U0 / axi_xor_2018_v1_0_S00_AXI_inst / *&&
REF_NAME = ~LUT *}
返回一个不包含我的exor门实例化的列表。
如果我使用
get_property LOC [get_cells design_1_i / axi_xor_2018_0 / U0 / axi_xor_2018_v1_0_S00_AXI_inst / EXORS]
它返回空列表。
我不确定为什么我的xor IP LUT在层次结构中看不到。
谢谢。
以上来自于谷歌翻译
以下为原文
@hongh
I tried the same approach using Vivado 2018.2
get_cells -hier -filter {NAME =~design_1_i/axi_xor_2018_0/U0/axi_xor_2018_v1_0_S00_AXI_inst/*}
gives a list that contains my exor gate instantiation with label EXORS.
However,
get_cells -hier -filter {NAME =~design_1_i/axi_xor_2018_0/U0/axi_xor_2018_v1_0_S00_AXI_inst/* && REF_NAME =~ LUT*}
returns a list that does not contain my exor gate instantiation.
If I use
get_property LOC [get_cells design_1_i/axi_xor_2018_0/U0/axi_xor_2018_v1_0_S00_AXI_inst/EXORS]
it returns empty list.
I am not sure why my xor IP LUTs could not be seen in the hierarchy.
Thanks.
举报