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.

Regarding settng output delay in cadence RTL compiler

Status
Not open for further replies.

srini.pes

Member level 3
Joined
May 28, 2010
Messages
61
Helped
2
Reputation
4
Reaction score
2
Trophy points
1,288
Location
NIT calicut
Activity points
1,725
dc::set_output_delay -clock [find / -clock clk] 0.9 [find / -port OGH2/GH20/DQ10/x_reg[0]/D]

here my clock name is clk and the interested out put port is "OGH2/GH20/DQ10/x_reg[0]/D"..

it showing some error in syntax is it correct or not.........
please guide me
 

It would be useful if you included the exact error message.
However, I suggest that you try the find command alone first, so you make sure they are not returning null string.
Hope this would help.

~sakr
 
Respected sakr,
First of all thanking you for responding to me

rc:/> dc::set_output_delay -clock [find / -clock clk] -fall 3000 -port [find / -port {OGH2/GH20/DQ9/x_reg[0]/D}]
Error : A required object parameter could not be found. [TUI-61] [parse_options]
: An object of type 'port|pin|port_bus' named '-port' could not be found.

i have mentioned like above as shown
am getting this error...i think there may be an error in the scripting it self can u suggest me the correct scripting or any thing to overcome these problems

waiting for u r reply
thanking you
 

you just need to remove "-port" from the command

following the syntax of set_output_delay from RC documentation

set_output_delay [-clock clock_name ] [-clock_fall]
[-level_sensitive] [-rise]
[-fall] [-max] [-min] [-add_delay]
[-network_latency_included]
[-source_latency_included] delay_value
ports |pins |hier_pins

there is no identifier before the port name.
Hope it works now.

~sakr
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top