D
Daku
Guest
Could some Verilog guru please suggest some ideas ?
A standard way to generate a clock pulse would be:
always
begin
#5 clock = 1;
#5 clock = 0;
end
Is there a straightforward way to generate a signal that goes high at
random intervals ?
I have messed around with $random and tried some ideas with LFSRs, but
have not gotten anything useful to work .
Any hints, suggestions would be extremely helpful. Thanks in advance
for your help.
A standard way to generate a clock pulse would be:
always
begin
#5 clock = 1;
#5 clock = 0;
end
Is there a straightforward way to generate a signal that goes high at
random intervals ?
I have messed around with $random and tried some ideas with LFSRs, but
have not gotten anything useful to work .
Any hints, suggestions would be extremely helpful. Thanks in advance
for your help.