-
Notifications
You must be signed in to change notification settings - Fork 46
Open
Description
I'm using vivado-git with a block design project that includes several BRAM modules, each of which has an associated COE file to set its contents. When calling wproj to generate a project TCL script, the absolute paths of these COE files are kept, instead of being replaced with relative ones. Here's an example snippet, for reference:
# Create instance: blk_mem_gen_1, and set properties
set blk_mem_gen_1 [ create_bd_cell -type ip -vlnv xilinx.com:ip:blk_mem_gen:8.4 blk_mem_gen_1 ]
set_property -dict [list \
CONFIG.Coe_File {c:/<project path>/src/design/coe/ram_init_1_1.coe} \
CONFIG.Enable_32bit_Address {false} \
<...more properties, trimmed for brevity>
] $blk_mem_gen_1Does Vivado even support using relative paths here? If so, can that be implemented as part of this project, or is it preferable to just type the relative path into Vivado in the first place?
Metadata
Metadata
Assignees
Labels
No labels