manojsainadh
Newbie level 1
I want to write a vhdl code for 8-bit synchronous reset register. Please help me out friends.
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.
Code VHDL - [expand] 1 2 3 4 5 6 7 8 9 10 Process(clk) Begin if rising_edge(clk) then if reset='1' then op <= x"00"; else op <= ip; end if end if; End process