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 ADITYAVARDHAN

  1. A

    Information about VHDL e-book

    FPGA PROTOTYPING BY VHDL EXAMPLES,Pong P. Chu
  2. A

    verilog interview question

    Given the following Verilog code, what value of "a" is displayed? always @(clk) begin a = 0; a <= 1; $display(a); end Please answer the question with reason. Thank you
  3. A

    How to insert delay in digital signal?

    you can also use D-flip flops to get delay
  4. A

    post synthesizes simulation ,mapping ,place and Route .

    The steps for post synthesizes simulation, mapping, Design constraints, static Timing analysis and place and Route vary depending on the type of device used(Altera/Xilinx). The below link contains the information for Altera devices...
  5. A

    FPGA and VHDL/Verilog for Begineers

    you can find some examples at **broken link removed**
  6. A

    FPGA and VHDL/Verilog for Begineers

    FPGA prototyping by Verilog examples: Xilinx Spartan -3 version‎ by pong p.chu FPGA prototyping by VHDL examples: Xilinx Spartan-3 version by pong p.chu These books have a lot of examples and they are explained step by step.
  7. A

    Problem in pin assignments

    I am using verilog
  8. A

    Problem in pin assignments

    HI, I am using Altera DE1 board.Is it possible to assign 2pins to single output in the pin planner.I need an output to both the LED on the board and the same output to the GPIO(general I/O pins).If so how can I do it? Thanks for your help.
  9. A

    Advanced Digital Design Books with verilog HDL

    You can find good examples in 1) Verilog for digital design by Frank Vahid. 2)FPGA prototyping by Verilog examples by Pong P. Chu.
  10. A

    6:2 Mux implementation

    I think it is not possible because we need select lines to select the output for a MUX.As we need 2 outputs we must have two select lines at the same time which is not possible.
  11. A

    Verilog array of registers synthesis problem

    S1 : temp1 = data_str0[0] + data_str0[1]; S2 : temp2 = temp1 + data_str0[2]; S3 : sum = temp2 + data_str0[3]; I think the problem may be because you are using the blocking statements.Blocking statements create latches.So make the temp1,temp2,sum non blocking statements. S1 : temp1 <=...
  12. A

    frequency counter & 555 questions

    A frequency counter measures and displays a signal. ---------- Post added at 03:03 ---------- Previous post was at 02:36 ---------- A 555 operating as a monostable multivibrator has a C1 = 0.01 F. Determine R1 for a pulse width of 2 ms. Answer:182 Formula pulsewidth=1.1*R*C I think it is...
  13. A

    Problem in sound from Altera DE1

    I am using Altera DE1 board.I am able to produce the sound from the de1 board but i am unable to set the volume.Is it possible to set the volume?
  14. A

    How to find number of registers in a design?

    If you compile the design in the compilation report we get the number of registers and the gates used in FPGA's.If I am wrong please correct me.

Part and Inventory Search

Back
Top