-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpa.fromHdl.tcl
executable file
·25 lines (23 loc) · 1.16 KB
/
pa.fromHdl.tcl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# PlanAhead Launch Script for Pre-Synthesis Floorplanning, created by Project Navigator
create_project -name ProjectFinal -dir "X:/My Documents/EC311/Labs/ProjectFinal/planAhead_run_1" -part xc6slx16csg324-3
set_param project.pinAheadLayout yes
set srcset [get_property srcset [current_run -impl]]
set_property target_constrs_file "KitchenTimer.ucf" [current_fileset -constrset]
set hdlfile [add_files [list {seven_alternate.v}]]
set_property file_type Verilog $hdlfile
set_property library work $hdlfile
set hdlfile [add_files [list {Debounce.v}]]
set_property file_type Verilog $hdlfile
set_property library work $hdlfile
set hdlfile [add_files [list {ClockDivider.v}]]
set_property file_type Verilog $hdlfile
set_property library work $hdlfile
set hdlfile [add_files [list {binary_to_segment.v}]]
set_property file_type Verilog $hdlfile
set_property library work $hdlfile
set hdlfile [add_files [list {KitchenTimer.v}]]
set_property file_type Verilog $hdlfile
set_property library work $hdlfile
set_property top KitchenTimer $srcset
add_files [list {KitchenTimer.ucf}] -fileset [get_property constrset [current_run]]
open_rtl_design -part xc6slx16csg324-3