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.

How to provide clock skew in VHDL ??

Status
Not open for further replies.

Avii13

Newbie level 3
Joined
May 1, 2013
Messages
4
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Location
Delhi
Activity points
1,304
I have written a VHDL code for PRBS. Its working fine.
Now i want to add clock skew to know the threshold value of delay after which PRBS will not work. Say clock reach at FF1 at T time and the same clock reach at FF2 at T+t1 time.
I used

process
begin
WAIT FOR 20ps ;
if clk'event and clk = '1' then

q <= d ;
end if;
end process ;

but its not working
How can I add this "t1" delay in clock in VHDL.?? Please sugeest
 

You have to use 2 clocks in that case.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top