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 report flops by hierarchy

Status
Not open for further replies.

TonyLS

Member level 3
Joined
Jan 21, 2009
Messages
58
Helped
2
Reputation
4
Reaction score
2
Trophy points
1,288
Location
Boston, MA
Activity points
1,760
Does anyone have a handy way of reporting a list of flip flops by hierarchy in DC? I'm looking to do it interactively in DC while the ddc is loaded.

Thanks for your help
 

I think you may need the "get_cells" command and use the "-filter" option. Please "man get_cells" for detail.
Or you can write a TCL script to do it, using the DC/PT "attribute".
 

GeT_cells -hier -filter "is_sequential == true"
 

get_cells -hier -filter "is_sequencial == true && is_hierarchical == false" will give you all the leaf cells.

Note: -hier and is_hierarchical are two different attributes.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top