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.
process(rst,clk,cntr)
begin
if(rst = '0') then
cntr <= (others => '0');
elsif(rising_egde(clk)) then
cntr <= cntr + 1;
end if;
end process;