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 anilkumarv

  1. A

    Best book to learn Verilog?

    learn verilog pdf Verilog HDL: A guide to digital design and synthesis --by Samir Palnitkar HDL chip design: A practical guide for designing, synthesizing and simulating ASICs and FPGAs using VHDL and verilog ---by Douglas J Smith
  2. A

    Advantages of having positive slack

    Re: +ve Slack It is always good to have positive slack rather than having zero slack. This is because in further process of chip design (like in backend) there may slight timing variations which can be accomodated if there is a positive slack.
  3. A

    What's the difference between always @ (posedge clk) and @ (posedge clk)?

    Re: Always Block The first one ,i.e. always@(posedge clk) The block under this executes at every postive edge of the clock @posedge clk This means that the block under this executes only once and that too, only at the first posedge of the clock
  4. A

    What are the recent developments in WiMAX?

    Re: What is WiMAX You can check the following links: http://www.wimaxforum.org/home/ http://www.tutorial-reports.com/wireless/wimax/tutorial.php
  5. A

    how to practice PERL language

    The best way to learn perl is by using it daily...writing testcases and reading the book "learn perl in 21 days"
  6. A

    Mixed Simulation of Design (VHDL and Verilog)

    vhdl instance in verilog Use mixed language simulators, for example synopsys has a tool by name VCS MX in which codes of both verilog and VHDL can be compiled and sumulated together (refer its pdfs for the commands)
  7. A

    What books should I use

    refer "Application specific integrated circuit" by sebastian john smith, Also refer Weste, Neil H.E. & Harris, David--- CMOS VLSI Design
  8. A

    Why we are using only D Flip-Flop in IC design?

    Re: D Flip-Flop D flip flop is the basic flop. It can be used as memories (which is used in many applications). It can also be used as dividers by just adding a not gate. Moreover other flops are not easy to use/modify as D flip flop
  9. A

    what is the next Hot IP ?

    Communication : Wimax,UWB Processor : multi cores and low power processors
  10. A

    Verilog While loop,For loop is synthesisable????

    for loop verilog synthesis It is synthesizable but it is always advised that for loops are not to be used in RTL coding. This is because it consumes lot of resources (like area etc.etc) . However u can use it in behavioral coding becuse we do not synthesize behavioral codes.
  11. A

    needed guidance in study of VLSI Design

    Hi, it is better u do Mtech in VLSI and embedded systems from an accredited/recognised university.....this is beacuse it is easier to get a vlsi job if u are an Mtech rather than having 6 month certificate course
  12. A

    Three Basic Doubts in Verilog......

    first one is ripple input. I did not understand the second question. Third answer is the concatenation operation.
  13. A

    Help with interview question #2

    Setup time is critical for finding the max clock frequency the setup time is the time interval before the active clock edge during which the data should remain unchanged Hold time: Time interval after the active clock edge during which the data should remain unchanged
  14. A

    memory element: latches and flip-flops

    It is better to avoid latch in a design because it may cause some problems in timing ananlysis and dft.

Part and Inventory Search

Back
Top