This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library IEEE; | |
use IEEE.STD_LOGIC_1164.ALL; | |
use IEEE.NUMERIC_STD.ALL; | |
entity encoder is | |
Port ( Clk : in STD_LOGIC; | |
A : in STD_LOGIC; | |
B : in STD_LOGIC; | |
POS : out STD_LOGIC_VECTOR (15 downto 0)); | |
end encoder; | |
architecture Behavioral of encoder is | |
--- | |
signal Q0,Q1,U,D : STD_LOGIC := '0'; | |
signal count : integer range -32768 to 32767 := 0; | |
--- | |
begin | |
process (Clk) begin | |
if(Clk'event and Clk='1') then | |
Q0 <= A xor B; | |
Q1 <= B; | |
end if; | |
end process; | |
U <= (not A and not B and Q1) or (not A and Q1 and not Q0) | |
or (A and not Q1 and not Q0) or (A and B and not Q1); | |
D <= (not A and B and not Q1) or (not A and not Q1 and Q0) | |
or (A and Q1 and Q0) or (A and not B and Q1); | |
process (clk) begin | |
if rising_edge(clk) then | |
if U = '1' then | |
count <= count + 1; | |
elsif D = '1' then | |
count <= count - 1; | |
end if; | |
end if; | |
end process; | |
POS <= std_logic_vector(to_unsigned(count, POS'length)); | |
end Behavioral; |
No hay comentarios:
Publicar un comentario