bob2987
Junior Member level 1
- Joined
- Feb 20, 2014
- Messages
- 18
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1
- Activity points
- 192
Hello, I would like to understand this process and what are the values of a,b,c and d steps by steps ?
-----------------------------
-----------------------------
Imagine, we choose a=1, b=2, c=3, d=10.
Thank you !
-----------------------------
Code:
if clk'event and clk ='1' then
a <= b;
b <= c;
c <= d;
end if;
-----------------------------
Imagine, we choose a=1, b=2, c=3, d=10.
Thank you !