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 tom123

  1. T

    Looking for schematics of good circuits with MAX038

    elektor +max038 I thinks that www.maxim-ic.com website should has what you want. best regards
  2. T

    Sine Wave generation from triangular wave

    Re: Sine Wave generation you can use direct digital synthesis technology to generate sine wave(digital form) in fpga. if you need analog format sine wave, you can convert digital format into analog wave by a DAC. best regards
  3. T

    what soft to design asic

    you need VCS (for simulation), DC(for synthesis), PT (for static timing analysis), ASTRO (for p& r) to design a asic. best regards
  4. T

    How to program GAL and which compiler to use?

    tutorial gal you can use ABEL to generate .jed file, then program GAL with general programmer. best regards
  5. T

    How many decoupling capacitors should I use for VirtexII Pro

    Re: How many decoupling capacitors should I use for VirtexII you must use one 0.1uf capacitor for each VCC/GND pair for power stability. best regards
  6. T

    Looking for documents on Clock Tree Design theory

    Re: clock tree design you cann find clock tree synthesis in <digital design perspective> and many other digital design books. best regards
  7. T

    How to design the Crystal PAD and circuit on ASIC?

    you should look for a analog book for osc's design. best regards
  8. T

    Art of digital design

    there is a book called <complete digital design>, perhaps it can help you. best regards
  9. T

    how to deciede the clock jitter

    even if you don't use pll on chip, but clock jitter is still present, because chip's VCC are varying when a chip is runing. this lead jitter on clock signal. meanwhile clock input may has some jitter for nonideal clock source. best regards
  10. T

    how can i detect the positive edge of a signal in verilog?

    positive edge signal following code can detect a posedge : wire signal_in; wire edge_detected; reg signal_d; always @(posedge clk or negedge rst_n) begin if (~rst_n) signal_d <= #1 1'b0; else signal_d <= #1 signal_in; end assign edge_detected =...
  11. T

    help on generating a clock

    your code can't be synthesized. only a simulation model. best regards
  12. T

    Who knows ? What is "metastability occurring" ?

    Re: Who knows ? What is "metastability occurring" The reason is that register is constructed by two ring cascaded inverter, these circuit has three state, 0, 1, and meta state. meta state is a voltage between 1 level and 1 level, this level can propagate to the next stage. best regards
  13. T

    negative HOLD values in SDF file

    negative hold time means that the signal can change before clock edge. best regards
  14. T

    hello frequency converter

    no any problem, my tv can display NTSC(60hz) and PAL(50hz) equally well. best regards
  15. T

    single/dual/multi-port SRAM

    signal port sram : has one address port; two port sram: has two address ports; multi port sram: has multiple address ports; the ports mean how many path there are to access a ram array; best regards

Part and Inventory Search

Back
Top