-
Notifications
You must be signed in to change notification settings - Fork 2
/
dc_script.tcl
43 lines (33 loc) · 1.23 KB
/
dc_script.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
####################################################
# Name: dc_script.tcl
# A standard script synthesize design in standard
# (non-ultra) DC Compiler flow
####################################################
# Setup Libraries
source -verbose script/setup_lib.tcl
# Read VHDL File
read_file -format vhdl {RTL/seq_detect.vhd }
# Link Desing and the Libraries
link
# Applying Constraints
####################################################
source -verbose script/dc_constraints.sdc
# TODO: Add/Compile Scan Chain
####################################################
####################################################
# TODO: Add/Compile Power Constraints
####################################################
####################################################
# Compile Design, Export netlist, and write reports.
####################################################
# Compile Design
compile
# Write netlist to ddc file and verilog file.
write -f ddc -o design_data/$usr_design_name.ddc
write -f verilog -o design_data/$usr_design_name.v
# Reports
report_timing > reports/dc_timing.rpt
report_constraint -verbose > reports/dc_compile_constraints.cons
####################################################
# Must exit to make it work with CI
exit