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 aVi3467

  1. A

    Delay modeling in Test Bench

    Have you considered using wait statement instead of the assignment delay? wait (expression) statement
  2. A

    What is call back process in system verilog?

    Callback : When a function is passed as a datamember the function which we get is a callback. This function which has been passed as an argument and can call any other function in the parent function. You can create a task hierarchy system in sysverilog and simulate the same.
  3. A

    Flip Flop output and timing with PRESET and CLEAR

    Depending on the kind of flipflop and how you have implemented it will decide the operation of PRESET+CLEAR. Various outcomes include, metastability, PRESET being given priority, vice-versa. A good example to analyze this situation with will be with passgate flip flop representation, Master...
  4. A

    FIFO used for safely transfer of data

    I recently worked with a similar synchronizer. As mentioned, FIFO depth and read/write rate will decide the operation desired.
  5. A

    Verilog HDL problems pls help

    Your variable KEY is declared as a net and since you are assigning it values inside an always block, it needs to be declared as a Reg. In case u cannot declare KEY as reg, for it being an input, use a temp variable, manipulate it, and do a continuous assignment to KEY from that Variable. reg...
  6. A

    how to use nested always?

    I am still new to the field, but whatever literature that I have come across I have not found anything like this. I tried it in my simulator, it shows error. Moreover I dont see a need to use a nested always block. You can control the flow and assignments using the blocking and non blocking...
  7. A

    Genvar-For and simple For

    If I use a genvar statement with a For loop, and a simple for loop, while synthesizing it, whats the HW difference that is seen? Also, if you could, please explain how is for loop synthesized as in HW? Is it a feedback kind of a thing with new vals or as successive blocks which could be broken...

Part and Inventory Search

Back
Top