report_delay_calculation problem with 2-input nand gate

Status
Not open for further replies.

ajhunt18

Member level 1
Joined
Jul 4, 2011
Messages
38
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,296
Activity points
1,554
What will be the command if I am to calculate the delay of a 2-input nand gate? what should I put in the "-from" portion?

please help.
 

you must do 2 report. because RDC command just report delay from a startpoint to a endpoint.
 
example: you have NAND cell with 2inputs A/B and output Z. you should:
RDC -from A -to Z
RDC -from B -to Z
when I verify a library. I do:
foreach INPUTs [list of all inputs] {
foreach OUTPUTs [list of all outputs] {
RDC -from $INPUTs -to $OUTPUTs > report.$INPUTs.to.$OUTPUTs.rpt
}
}
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…