📄 encoder3.vhd
字号:
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.conv_std_logic_vector;
entity encoder is
port ( a, b, c, d, e, f, g, h : in std_logic;
out2, out1, out0 : out std_logic);
end encoder;
architecture behave of encoder is
begin
process (a, b, c, d, e, f, g, h)
variable inputs : std_logic_vector (7 downto 0);
variable i : integer ;
begin
inputs := (h, g, f, e, d, c, b, a);
i := 7;
while i >= 0 and inputs(i) /= '1' loop
i := i - 1;
end loop;
if ( i < 0) then
i := 0;
end if;
-- The second argument in conv_std_logic_vector is
-- the width of the result.
(out2, out1, out0) <= conv_std_logic_vector (i, 3);
end process;
end behave;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -