1
|
library IEEE;
|
2
|
|
3
|
use IEEE.std_logic_1164.all;
|
4
|
|
5
|
entity centisecond_timer is
|
6
|
generic
|
7
|
(
|
8
|
---- For implementation:
|
9
|
-- g_clock_cycle_per_centisecond: natural := 500000
|
10
|
---- For testing, we recommend using:
|
11
|
g_clock_cycle_per_centisecond: natural := 8
|
12
|
);
|
13
|
port
|
14
|
(
|
15
|
i_clock: in std_logic; -- System clock.
|
16
|
i_reset: in std_logic; -- System reset.
|
17
|
i_raz: in std_logic; -- User triggered raz.
|
18
|
i_enable: in std_logic; -- Time is passing.
|
19
|
o_new_centisecond: out std_logic -- Centisecond pulse.
|
20
|
);
|
21
|
end centisecond_timer;
|
22
|
|
23
|
architecture behavioral of centisecond_timer is
|
24
|
-- Having a range of 0 to (CLOCK_CYCLE_PER_CENTISECOND - 1) seems less
|
25
|
-- readable, so we start at 1.
|
26
|
signal timer: natural range 1 to g_clock_cycle_per_centisecond;
|
27
|
begin
|
28
|
P_TIME_COUNTER: process (i_clock, i_reset)
|
29
|
begin
|
30
|
if (i_reset = '1')
|
31
|
then
|
32
|
timer <= 1;
|
33
|
else
|
34
|
if (rising_edge(i_clock))
|
35
|
then
|
36
|
if (i_raz = '1')
|
37
|
then
|
38
|
-- Reset has been requested.
|
39
|
timer <= 1;
|
40
|
else
|
41
|
-- No reset has been requested.
|
42
|
if
|
43
|
(
|
44
|
(i_enable = '0')
|
45
|
or (timer >= g_clock_cycle_per_centisecond)
|
46
|
)
|
47
|
then
|
48
|
timer <= 1;
|
49
|
elsif (i_enable = '1')
|
50
|
then
|
51
|
timer <= (timer + 1);
|
52
|
end if;
|
53
|
end if;
|
54
|
end if;
|
55
|
end if;
|
56
|
end process;
|
57
|
|
58
|
o_new_centisecond <=
|
59
|
i_enable
|
60
|
when (timer >= g_clock_cycle_per_centisecond)
|
61
|
else '0'
|
62
|
;
|
63
|
end;
|