• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Digital Implementation
  3. DifferenceS between and usage of term,fterm,inst,cell,h...

Stats

  • Locked Locked
  • Replies 4
  • Subscribers 93
  • Views 4826
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

DifferenceS between and usage of term,fterm,inst,cell,hinst

NAADHAN
NAADHAN over 16 years ago

Hi all,

Please can any one tell me the exact differences between  inst , hinst, term, fterm, cell and their usage while scripting in encounter.

 

Thanks & Regards,

NAADHAN

  • Cancel
  • jgentry
    jgentry over 16 years ago

     Hello Naadhan,

      Assuming you are familiar with Verilog constructs, I'll explain it as follows.  Assume we have a nand gate called NAND2 connected as follows:

    NAND2 U42(.A(net1),.B(net2),.Q(net3));

       In this case, the "U42" (the instantiation of the nand gate) would be considered the "inst", "NAND2" would be considered the "cell".  "terms" and "fterms" are essentiallys "pins" but the difference is whether it is a pin of the "cell" (fterm) or the pin of the "inst" (term).  The 'h' in "hinst" and "hterm" simply means it is hierarchical.  For instance, say we have a top-level design "TOP" and a child "CHILD" connected as follows:

     module TOP (in,out);
     input in;
     output out;
     CHILD child_inst(.cin(in),.cout(out));
     endmodule

     module CHILD(cin,cout);
     input cin;
     output cin;
     ...
     endmodule

    In this case, 'child_inst' would be an 'hinst' and 'child_inst/cin' would be an 'hterm'.  However, 'CHILD' is still a 'cell' and 'CHILD/cin' and 'CHILD/cout' are still 'fterms'.  Also note the 'TOP' is a cell and 'TOP/in' and 'TOP/out' are 'fterms'.

    Does that make sense?

    JG

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • NAADHAN
    NAADHAN over 16 years ago

    Thank you so much Mr.JG......this  very clear n Crisp and illustraion is so clear. Thanks a lot :-)

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • jgentry
    jgentry over 16 years ago

     Glad to help!

    JG

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • Robert Lee
    Robert Lee over 16 years ago

    Just good explanation!

    Help to make my concept clearly!

    Thank you!

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information