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.

[SOLVED] Get the input pins of a cell in design compiler

Status
Not open for further replies.

DustHerder

Newbie level 4
Joined
Jun 8, 2016
Messages
5
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
33
Hi guys,

I find this command get_pins -of_objects [ get_cells $cell ] but this give me the all pins of the cell, i want only the inputs pins, any suggestion to solve this ?

Regards,
DustHerder
 

You are sure of that? i tried like this get_pins -filter "direction == in" -of_objects [ get_cells $cell ] and get all pins. And gave me this Error: Type mismatch between 'direction' and 'in' .
 

The "direction == 0" didn't work but i tried "direction == 1" and i got the input pins and i tried "direction == 2" and i got the output pins.

So the solution is,

get_pins -filter "direction == 1" -of_objects [ get_cells "name_of_cell" ]

Thank you all for the help.
DustHerder.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top