Skip to content

Commit 67e89da

Browse files
committed
Script is working
1 parent b4a52b9 commit 67e89da

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

examples/baremetal/vivado_template.j2

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set filelist "{{ filename }}"
88
# === PROJECT SETUP ===
99
create_project $proj_name $proj_dir -part $part -force
1010

11-
# Read .f file and add RTL + includes
11+
# === READ CMD FILE ===
1212
set fp [open $filelist r]
1313
while {[gets $fp line] >= 0} {
1414
set line [string trim $line]
@@ -25,12 +25,13 @@ while {[gets $fp line] >= 0} {
2525
}
2626
close $fp
2727

28-
# Set top module
28+
# === SET TOP ===
2929
set_property top $top_module [current_fileset]
3030

3131
# === SYNTHESIS ===
3232
launch_runs synth_1
3333
wait_on_run synth_1
34+
open_run synth_1
3435

3536
# === REPORTING ===
3637
report_utilization -file "$proj_dir/post_synth_util.rpt"

0 commit comments

Comments
 (0)