Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

how to unset set_false_path

Status
Not open for further replies.

billylee

Junior Member level 1
Joined
Sep 10, 2009
Messages
16
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Location
Korea
Activity points
1,390
there are many clocks on my design
clk0 - clk50

so i want to set_false_path between all clocks

set clock_list [list clk0 clk1 .. clk50]
foreach each_clock1 $clock_list {
foreach each_clock2 $clock_list {
if { $each_clock1 != $each_clock2 } {
set_false_path -from [get_clock $each_clock1] -to [get_clock $each_clock2]
set_false_path -from [get_clock $each_clock2] -to [get_clock $each_clock1]
} else {
}}}

and now, how to unset false_path already defined
and how to make some kind of 'set_true_path' between clocks

BR
 

Hello Billylee,

To undo a set_false_path command, use the reset_path
command with similar options. For example, enter

dc_shell> set_false_path -setup -from IN2 -to FF12/D
dc_shell> reset_path -setup -from IN2 -to FF12/D

Regards,
 


Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top