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.

Recent content by abner

  1. A

    HDL Designer, Design Methology

    ABout editor, I think "vim" is the most convenient editor if you know script languages very well.
  2. A

    What is the best way to reduce power for low power ASIC?

    Re: LOW POWER ASIC My idea is: 1. If your problem is peak power : Use some power compiler or in apr stage to distribute your logic, make logic not to toggle at same time. 2. If your problem is average power: You can use 2.1 Low power cell from foundry 2.2 Use design to...
  3. A

    Does RESET signal need a buffer tree?

    Reset needs buffer trees of course because you need to initialize all internal registers' state, so the design can work after reset. In apr tools, you jsut treat it as a high fanout net, then do the buffer tree insertion. But you must check reset signal 's latency to each ffs.
  4. A

    HDL Designer, Design Methology

    1. Directory: source target( inside, sim, syn, sta, apr, pdv ) tool( put tool link or design kit ) cad( setting environment and cad tool library) 2. Version management: CVS 3. script language: verilog, sh, make, csh, tcl,c,perl 4. Filename: Begin with module name...
  5. A

    about VLIW embbeded processor

    Power/Routing/Area will also be issues in VLIW processor.
  6. A

    Setup time failure detection

    1. Setup time violation: Slow down your chip clock freq., if OK, then it is setup time violation. 2. If slow down still failed -> hold time violation. But some time it is due to power problem, so, raise up or down your chip working voltage can give you idea about failure reason.
  7. A

    Why we use MOS family if BJT has better GAIN or BW?

    Re: Why we use MOS family? Cheap and scalable easier
  8. A

    Microcontroller project - please suggest something

    Re: Microcontroller project option 1. Find a simulator. Try to find execution environment on internet. According to that environemnt's setting to do some practice. option 2. Spend money, buy 8051 tool kit (board), according to that board's environment, write some code, upload your...
  9. A

    System level verification

    There exists some un-clear points in your description. PLease describe your methodology. And, What do you mean "testing"? main function or test coverage? Roughly, 0) Usually, we use "divide & conquer" way to verify your design. That means, you must write your golden model first in TOP...
  10. A

    Converting a CDL netlist into a spice netlist

    cdl spice If you have synopsys hercules, you can use "nettran" utility to do the transformation. Actually, the difference between cdl and spice is small, you can write your own utility to do the conversion, I think perl is a not-bad programming language choice.
  11. A

    can connect pad power ring and core power ring ?

    Re: PAD AND POWER RING And, put pad power ring outside, core power ring inside. If possible, divide the power between analog and digital parts if your analog circuit is sensitive.
  12. A

    HDL-93 HDL-180 - how to deal with the warning

    Check bus "a" 's width. If bus "a" is from bit 7 to bit 0, Solution 1: You need to put all of them in "@(...)" block. Solution 2: always @( a[0] or a[1[] ) begin b[0] = a[0]; b[1] = a[1]; end Solution 3: always @( a[0] or a[1[] ) begin b = { a[1], a[0] }; end Some of them may be...
  13. A

    Opinions on VCS 7.0 software

    Yep, for pure RTL Verilog/VHDL simulation, I think VCS is trash too. For AMDS-> only suitable for big logic and medium analog custom block. For Adit -> under spice +rtl environment, [Disadvantage]: compared with VCS+Nanosim, Speed poor. and for verilog syntax support is also poor too...
  14. A

    Opinions on VCS 7.0 software

    I don't think so. I use VCS + NANOSIM to do mixed mode simulation under "big standard logic" + "middle scale customed logic" environment. It is really great. The most important thing is: current VCS only support VCS(master) + Nanosim(slave) cosimulation environment. But in the future, they...

Part and Inventory Search

Back
Top