We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4a52b9 commit 67e89daCopy full SHA for 67e89da
1 file changed
examples/baremetal/vivado_template.j2
@@ -8,7 +8,7 @@ set filelist "{{ filename }}"
8
# === PROJECT SETUP ===
9
create_project $proj_name $proj_dir -part $part -force
10
11
-# Read .f file and add RTL + includes
+# === READ CMD FILE ===
12
set fp [open $filelist r]
13
while {[gets $fp line] >= 0} {
14
set line [string trim $line]
@@ -25,12 +25,13 @@ while {[gets $fp line] >= 0} {
25
}
26
close $fp
27
28
-# Set top module
+# === SET TOP ===
29
set_property top $top_module [current_fileset]
30
31
# === SYNTHESIS ===
32
launch_runs synth_1
33
wait_on_run synth_1
34
+open_run synth_1
35
36
# === REPORTING ===
37
report_utilization -file "$proj_dir/post_synth_util.rpt"
0 commit comments