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 vivek_p

  1. V

    priority mux diagram necessary with the RTL also

    //Verilog Code for 4X1 Priority Mux module pr_mux4 (a,b,c,d,sel,out); input a,b,c,d; input [1:0] sel; output out; reg out; always@(a or b or c or d or sel) begin if (sel == 2'b00) out = a; else if(sel == 2'b01) out = b; else if (sel == 2'b10) out = c; else out = d...
  2. V

    Doubt regarding clock uncertainty..

    Can some one pls explain jitter impact on hold
  3. V

    Doubt regarding clock uncertainty..

    Can you please refer the below link and explain if possible **broken link removed** As per the pdf(link) , jitter impacts both setup and hold time on two different conditions
  4. V

    ATPG test vector format

    STIL Format : IEEE 1450 - Standard Test Interface Language (STIL) WGL Format : Edaboard discussion - WGL TDL : **broken link removed**
  5. V

    Struck at FAULT IN SEQUENTIAL CIRCUIT

    You can use an ATPG (Automatic Test Pattern generation) tool to generate the input sequence (test patterns). Eg : Tetramax (Synopsys), Fastscan (Mentor Graphics) @Tushar : Note its "stuck-at" fault not "struck-at"
  6. V

    output port with clock

    Can you please elaborate your issue
  7. V

    [SOLVED] A question about Instruction memory and data memory

    Instruction Memory and Data Memory act as Cache for providing fast access. Normally Cache are made up of SRAM. So most likely, Instruction Memory and Data Memory are SRAM
  8. V

    How to Increase DFT coverage?

    Try running Full sequential and also increase the abort limit to 10. I am not an experienced guy. Forum members pls help !!
  9. V

    How to Increase DFT coverage?

    Inorder to decrease the ATPG untestable faults, try running Fast Sequential or Full Sequential ATPG Engines (Using run_atpg -fast_sequential_only or run_atpg -full_sequential_only commands). But Full or Fast sequential algorithms need more runtime as they are computationally intensive algorithms...
  10. V

    My output is showing high impedence after doing the following please explain

    Can you pls attach ur design and testbench code if possible
  11. V

    My output is showing high impedence after doing the following please explain

    Did you properly drive the output wire of the test bench?
  12. V

    Difference b/n pqrqllel qnd serial patterns

    Pls refer to the thread https://www.edaboard.com/threads/123244/
  13. V

    Low power in scan mode

    Refer Low Power fill (Synopsys tetramax)......Tetramax can generate patterns in a manner , where there is less switching between consecutive bits in a pattern. TetraMAX fill the "unused" bits of a shift in sequence with 1s or 0s, depending on the values on the USED bits. That is, some bits of a...

Part and Inventory Search

Back
Top