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 johanlo

  1. J

    who can share a sample Design Complier synthesis script?

    Operand isolation will give you some overhead in terms of area, and it might impact frequency. That might be the reason...
  2. J

    Can you explain the difference between bc-wc and OCV in STA

    Re: Can you explain the difference between bc-wc and OCV in OCV (On Chip Variation) tries to take care of local variations within a chip, while the different corners take cares of the whole range of variations from chip to chip. You usually use OCV for 65nm and smaller process nodes. As...
  3. J

    What will be the output of this verilog code Any Idea ?

    I believe that Var1 will be assigned bit 0 of the 8 bit ASCII value of the character -. The simulator or the synth. tool should give a warning about truncating.
  4. J

    DC Topographical error: fail in placement: Over Utilization

    Re: DC -topo Error I believe this means that the utilization is more than 100%, so the die area is too small. Run DC without the physical constraints and check what the netlist area is. If the area is bigger than your die area constraint, the you have to revisit your floorplan. Also try...
  5. J

    At which stage should WLM and SDF be used ?

    Re: wlm vs sdf In the old days DC was unware of cell placement, and wire load model (WLM) was used to estimate the netdelay. The WLM is based on the net fanout, and each standard cell library contained some WLMs to choose from. Now DC is placement aware, running the tool in topographical mode...
  6. J

    dc Vs primetime: reasonable slack or not?

    Hi, DC has the capability to do a virutal layout, and with hints about the layout and correct constraints DC should be within 5% from e.g. IC Compiler. To get accurate reports from Primetime you need to give the tool information like RC data from StarRC and a netlist with clock tree inserted...
  7. J

    Quick Register Counts w/o Synthesis

    Tools like Spyglass are able to do things like that. Not sure if DC is able to give you a register count without doing a full synthesis.
  8. J

    low power technics in rtl synthesis

    Verilog flip-flop: reg d; wire load, value; always @(posedge clk) begin if (load) begin d<=value; end end The flop will be loaded at rising edge when load is 1. Without clock gating this will ble implemented as a 2-1 mux in front of the flop. The load signal chooses if d (fed back)...
  9. J

    finding crtitical path in the synthesized verilog code

    Re: finding critical paths in design vision Yes, you can find your critical paths using Design Vision. Check your manual for report_timing. report_timing -max_path 10 will report the 10 worst paths per timing group.
  10. J

    what is mean by internal power in .lib

    Internal power is power dissipated within the boundary of a cell. During switching, a circuit dissipates internal power by the charging or discharging of any existing capacitances internal to the cell. Internal power includes power dissipated by a momentary short circuit between the P and N...
  11. J

    The following generated clock has no path to its masterclock

    Re: The following generated clock has no path to its masterc What I believe is that there exists no timing arcs between the two clocks, hence the warning. I also believe that you should use the create_generated_clock command to make a second clock. In FPGA you would use a primitive to...
  12. J

    can someone give me a divide-by-7 diagram? DIAGRAM please.

    Re: can someone give me a divide-by-7 diagram? DIAGRAM pleas A suggestion is to multiply by 1/7.
  13. J

    LVDS I/O in ASICs - fairly normal requirement

    Re: LVDS I/O in ASICs LVDS is pretty analog stuff, and you are _usually_ not able to mix analog and digital design when doing layout. I believe LVDS modules can be bought from companies designing analog I/O. What is the more practical solution is to use a simulation model for LVDS when you...
  14. J

    Need help understanding a schematic symbol

    This is a tri-state buffer; the output is either the same as the input, or has high impendace. Can be used if you want several drivers on one line.

Part and Inventory Search

Back
Top