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.

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.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top