Ponmalar21
Newbie level 4
- Joined
- Dec 18, 2014
- Messages
- 5
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1
- Activity points
- 29
How to generate random delay in the VHDL code??
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
How to generate random delay in the VHDL code??
Code VHDL - [expand] 1 2 3 4 5 6 7 signal delay; delay <= "011" if delay /= "00" then delay <= delay - 1; else delay <= "111"; end if;