-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfalse_path.tcl.tcl
More file actions
36 lines (23 loc) · 880 Bytes
/
false_path.tcl.tcl
File metadata and controls
36 lines (23 loc) · 880 Bytes
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
############source one by one to check#########################
#Reset design before apply another case analysis method
reset_design
#applying false_path in the deisgn
set_false_path -from [get_ports a[*]] -to [get_ports f[*]]
set_false_path -from [get_ports c[*]] -to [get_ports f[*]]
set_false_path -from [get_ports b[*]] -to [get_ports e[*]]
set_false_path -from [get_ports d[*]] -to [get_ports e[*]]
#Do update_timing
update_timing
#report the exceptions
report_exceptions -nosplit
#report timing
report_timing -to f[0] -nworst 50 -path_type summary
report_timing -from a[*] -to f[*]
#setting max delay
set_max_delay -from [all_inputs] -to [all_outputs]
update_timing
#unconstrained path
report_timing -from a[*] -to f[*]
#constrained path
report_timing -from b[*] -to f[*]
report_timing -to f[0] -nworst 50 -path_type summary