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 siskin

  1. S

    VHDL code for a square root of a real number????

    Both Xilinx and Altera provide a floating point square root function: Altera's Megacore function: Altera Floating Point Megafunctions Xilinx's CoreGen function: **broken link removed** But I thought you needed VHDL? If all you want is a square root for Spartan-3, then I'd suggest you go with...
  2. S

    How to Implement RS232 with Xilinx ISE

    There is no such thing as an RS-232 port on a Spartan. I think what you're asking is: 'how do I route my design such that it uses the pins that connect to my external RS232 transceiver?' Assuming you are using Xilinx ISE, you need to add a constraint file that specifies pin locations for each...
  3. S

    Inferring latches?????

    Latches are used in designs for specific purposes. Often, the use of latches is considered "bad practice" in a synchronous design (and synthesis tools will often give you warnings when latches are inferred). However, latches are still important. As an example of where you might use one...
  4. S

    VHDL code for a square root of a real number????

    Yes, CORDIC can still be used for floating point, although it is not necessarily the best method. What is the format of your FP numbers? IEEE single precision, IEEE double precision, or something else? Again, I would say that the method you choose depends on your constraints: available...
  5. S

    VHDL code for a square root of a real number????

    Hi Praveen, There are many ways to calculate the square root, and the method you choose depends on several factors: - how fast you need to do it (clock speed and latency requirements) - how much hardware you want to use (and what resources are available in your chosen device) - how accurate...
  6. S

    Computer requirements for ASIC design

    Hi yadavvlsi, I mainly do front-end, up to and including synthesis, then pass to someone else to do the layout. I then do post-layout gate level simulations. My last chip was ~1 million instances, plus a lot of RAM. I use ModelSim for simulations. Of course, ModelSim is single-threaded, so it...
  7. S

    What is the need of a Synthesizer

    Typically, in digital design, you would create your design in a hardware language such as VHDL or Verilog. You can use a Simulation tool to simulate this high-level description, display waveforms, and so on. A synthesis tool takes your VHDL code and converts it into mathematical equations...
  8. S

    Need Help, How to pick up TSMC lib file for Gate SIM?

    Hi Bin, I've recently done a TSMC gate level simulation. Normally the gate library will be in the form of a big verilog file (or several files), and you need to edit your compile script to include this. If you're using ModelSim, you need to invoke vsim with the -L option to point it at the...
  9. S

    Computer requirements for ASIC design

    I was wondering what kind of computers/workstations/servers are required these days for designing the latest digital ASICs? I don't do many ASICs, but the last one I did was a 65nm job with a die area of about 40mm2. To do the gate level sims on that I used a 24-core Xeon blade and it needed 96...
  10. S

    LVDS I/O in ASICs - fairly normal requirement

    I am just about to start an ASIC design, probably targetting TSMC 90nm. I need some of my inputs to be LVDS, which seems like a fairly normal requirement to me, but there don't seem to be any LVDS I/O buffers in the standard vendor libraries! Having a browse on the web, I can only seem to find...
  11. S

    FIR filters with complex coefficients

    complex coefficient fir matlab Please can someone explain the benefits of a FIR filter with complex coefficients, as opposed to one which uses real coefficients? Why would I choose a complex FIR over a real one? I have seen complex FIR filters used occasionally, for example in equalization, but...

Part and Inventory Search

Back
Top