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 fpga_asic_designer

  1. F

    clock division - using analog logic, logic in the clock path

    clock division there are at least two reasons why gates should be prevented along the clock tree from front end netlist: 1. too many gates on the clock line will typically screw up the duty cycle 2. gates will complicate CTS procedures. It is allowed to add muxes and xor or inverters prior to...
  2. F

    take spice analog netlist for digital simulation purpose?

    I am asked to take some spice analog netlist and use synopsys tools to convert them into digital stimulus. Feeding these stimulus into the digital interface to check the functionality. I think it's nanosim tool. Does any one know how to use it along with cadence ncsim and the flow about it? I...
  3. F

    set_dft_signal scan clock specification

    I only used ports as ScanClock. But for scan shift/scan output stuff, I used internal signals, because I did not manually connect them to ports. I left the job to stitching tool to connect them. set_dft_signal -view spec -type ScanDataOut -port ioxxx -hookup_pin "uxxx/xxx" So it seems that...
  4. F

    Verilog/Sysverilog Test Bench Question

    hi pra, i agree with your point. but i think that kind of expression can only apply for verilog. wut should be used for vhdl? i know in ncsim you can use some special function, but it can only be recognized with ncverilog.
  5. F

    which type of spare cells are common in industry

    Spare cells as far as i know, there are two ways to put spare cells. As a front end guy, i always put some NAND/NOR/INV/OAI/AOI/AND/OR spare gates in my design. Also 2 scanable FF for each clock domain. After the netlist down, backend will put bunch of spare gates everywhere uniformly in the...
  6. F

    fast fast corner and slow slow corner

    fast corner :Dthanks a lot for the info!
  7. F

    Gate-level Netlist TO RTL Netlist

    rtl gate level I don't know if there are any tools you can use to transfer the synthesized netlist directly to a generic verilog independent to the technology. but i guess there are two ways to make it true: 1. other than the netlist, define a mapping file to map the gates instantiated in the...
  8. F

    fast fast corner and slow slow corner

    slow corner temperature :| fast nmos/pmos? u sure? i will just specify a single FAST/SLOW to indicate that... is there any parts marked as "fast slow corner parts" or "slow fast corner parts"?
  9. F

    fast fast corner and slow slow corner

    fast fast corner does any one know the meaning of fast fast corner and slow slow corner? why there are two fast and two slow? what does they mean respectively? wafer fast? process fast? :| thanks
  10. F

    serial-to-parallel shift register

    that doesn't sound too hard. you can simply code it up using verilog always @ (posedge iclk) begin q[5] <= q[4]; q[4] <= q[3]; q[3] <= q[2]; q[2] <= q[1]; q[1] <= q[0]; q[0] <= id; if (cnt == 'h5) cnt <= 'h0; else cnt <= cnt + 1; end always @ (posedge iclk) begin if (cnt == 'h5) odata <=...
  11. F

    how do you guys handle reset in your design

    you are online?? I was trying to ask u via MSN You use spyglass?
  12. F

    how do you guys handle reset in your design

    Quick question. How do you guys handle async reset in your design. Should I use the OPT1 coding below, or should I use the OPT2 coding below. If I use OPT1, then even if the iclk2 is not present, the flops with orst2 will still be reseted. If I use OPT2, then orst2 should have no recovery time...
  13. F

    question about DDS logic-- reverse engineering

    The normal DDS have a low frequency resolution. I.e. if the reference clock is 200MHZ, the frequency resolution is normally also 200MHZ. This is not very nice, since you cannot have a clock of frequency 160MHZ, only 200MHZ, 100MHZ, 66MHZ (5ns, 10ns, 15ns etc) available. To achive smaller...
  14. F

    How is VLSI Jobs in US now

    vlsi university + us Silicon valley marched into a cold winter since the mid 2008. Now many big companies laying off people, not only semiconductor business, but technology in general. Most consumer electronic ic companies are not doing well. But network/ethernet and rf chip companies seem to...

Part and Inventory Search

Back
Top