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 rettylee

  1. R

    Digital signal eyediagram?

    Hi,guys: I have a high speed (2.5G)digital signal with timing jitter,now I want to see the eyediagram.I have monitor the signal ,but how can I get it's eyediagram? Anyone can help me ? Thank you...
  2. R

    zero width pulse problem?

    The "clk" came from analog behavior model with multi_driver....Maybe the problem is from there.But now I could not rewrite the analog behavior model ,is there any method to remove the "0" width pulse?
  3. R

    zero width pulse problem?

    Hi,guys: when I wrote a simple alway block,the 0 width pulse problem came out.. always@(posedge clk) begin a = $random; end always@(negedge clk) begin b = $random; end But saw the waveform ,I found that the sometimes a and b changed at the same time.There is a "0" width pulse in...
  4. R

    Integer data type can not be assigned in always block ?

    Thanks for your reply.I tried as you said except using "=" instead of "<=",because I need the begin....end block exeute sequently.But the result is the same as before......
  5. R

    Integer data type can not be assigned in always block ?

    A verilog behavior model problem.... Hi,guys: I want to add jitter to a signal clk.When using random generator task,I need integer data as seed in always block like this: integer seed; real d; always begin @(posedge clk); seed = $random; d = $dist_normal(seed,0,1)/1000.0; # d ...
  6. R

    $dist_normal system task

    Thanks for your guide.I know how should I do now.
  7. R

    $dist_normal system task

    Hi,guys: I need to use $dist_normal to generate random data.The task $dist_normal has 3 parameters:SEED,MEAN,STDEV.I only want to maks sure the MEAN and STDEV,the SEED is random. How can i use the first parameter of task $dist_normal(????,DATA1,DATA2)? Anyone can help me ? Thanks
  8. R

    The difference of RTL and gate simulation ?

    Thank you for your reply. After tracing the "x' ,I find it is not from timing violation,but from the beginning "x" which should not spread.For example:A0=0,A1=x_logic,B0=x_logic,B1=1.A1 and B0 connect to the same signal. The output Y= ~(A0|A1) | (B0&B1).If x_logic is "x" ,Y will be "x".But in...
  9. R

    The difference of RTL and gate simulation ?

    Hi,guys! I am running post simulation now and confused in gate level "x" state which is not exist in RTL simulation.Tracing "x" is not a good job .Anyone can give any suggestion on deal with the "x"?ignore or fixed them ?
  10. R

    [SOLVED] VCS "X"state problem

    Thank you for your guide,it's clear for me now.
  11. R

    [SOLVED] VCS "X"state problem

    Thank you for your reply,yang. as you say, I think most "x" came from registers without reset or behavioral models without initial value. To fix them, now,my only choice that I can chose is to force the signal one by one.I want to kown ,is there better method to deal with it? guide me please!
  12. R

    [SOLVED] VCS "X"state problem

    Hi all, When i use vcs to simulate a design with behavioral models,some "x" or "z" state found especially some read only registers.How should I deal with them more effectively?Because there are too many....anyone can guide me ? thanks

Part and Inventory Search

Back
Top