Ponmalar21
Newbie level 4
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 currently requires accessing the site using the built-in Safari browser.
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;