2 use ieee.std_logic_1164.all;
12 architecture RTL of Blinker is
13 constant N : natural := 25e6;
14 signal count_reg : natural range 0 to N - 1;
20 elsif rising_edge(clk_i) then
21 if count_reg = N - 1 then
24 count_reg <= count_reg + 1;
29 led_o <= '1' when count_reg < N / 2 else '0';