-
Notifications
You must be signed in to change notification settings - Fork 0
/
projeto3.vhd
75 lines (67 loc) · 1.94 KB
/
projeto3.vhd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
library IEEE;
use IEEE.std_logic_1164.all;
use ieee.numeric_std.all;
--use work.pacote.all;
entity dut_timer is
port(
clk : in std_logic;
reset : in std_logic;
enable : in std_logic;
updown : in std_logic;
contagem: out std_logic_vector(5 downto 0)
);
end dut_timer;
architecture basic of dut_timer is
type my_state is (Zera, Parado, Soma, Desce);
signal estadoAtual : my_state;
signal proximoEstado : my_state;
signal contador : unsigned(5 downto 0); -- valores de 0 a 59
signal controle : std_logic_vector(2 downto 0);
begin
controle <= reset & enable & updown;
contagem <= std_logic_vector(contador);
process(clk)
begin
if rising_edge(clk) then
estadoAtual <= proximoEstado;
case estadoAtual is
when Zera => contador <= to_unsigned(0,contador'length);
when Parado => contador <= contador;
when Soma =>
if(contador=59)then
contador <= to_unsigned(0,contador'length);
else
contador <= contador + 1;
end if;
when Desce =>
if(contador=0)then
contador <= to_unsigned(59,contador'length);
else
contador <= contador - 1;
end if;
end case;
end if;
end process;
process(controle)
begin
case controle is
when "000" => -- reset=0 enable=0 updown=0
proximoEstado <= Parado;
when "001" => -- reset=0 enable=0 updown=1
proximoEstado <= Parado;
when "010" => -- reset=0 enable=1 updown=0
proximoEstado <= Soma;
when "011" => -- reset=0 enable=0 updown=1
proximoEstado <= Desce;
when "100" => -- reset=1 enable=0 updown=0
proximoEstado <= Zera;
when "101" => -- reset=0 enable=0 updown=1
proximoEstado <= Zera;
when "110" => -- reset=1 enable=1 updown=0
proximoEstado <= Zera;
when "111" => -- reset=0 enable=0 updown=1
proximoEstado <= Zera;
when others => proximoEstado <= estadoAtual;
end case;
end process;
end basic;