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.

DC TCL get information of FF reference

Status
Not open for further replies.

RolfK

Newbie level 3
Joined
Jun 12, 2011
Messages
3
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,283
Activity points
1,303
Dear ALL,

I'm new in this group. I'm a biginner with Design Compliler and try to use the tool to analyse a design after I have done the synthesys.

My current problem is to get any information on an instanciated FF.
I call the tiny tcl script below from dc_shell gui. It works well so-far.
But how do I get access to some attributes of the reference.
I would like to now which pin is the data-in pin , clk-pin , what is the edge type (rsing , falling) and such. All I have is the cell and its ref_name so-far.

But how to get all information of the FF by $r ?

############ script ################

set regs [all_registers -edge_triggered]

foreach_in_collection r $regs {
set m [ get_attribute $r ref_name ]
set inst [get_object_name $r]
puts "RefName=\"$m\" Instance=\"$inst\" \n"
}

###################################

Hope somebody can help me on this

Rolf
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top