首 页文档资料下载资料维修视频包年699元
请登录  |  免费注册
当前位置:精通维修下载 > 文档资料 > 家电技术 > 维修教程知识 > 学习园地
[VHDL实例]最高优先级编码器
来源:本站整理  作者:佚名  2006-07-19 19:10:12



 -- Highest Priority Encoder
 -
 LIBRARY ieee;
 USE ieee.std_logIC_1164.ALL;
 entity priority is
    port(I : in bit_vector(7 downto 0); --inputs to be prioritised


       A : out bit_vector(2 downto 0); --encoded output
       GS : out bit);  --group signal output
 end priority;
 
 architecture v1 of priority is
 begin
    process(I)
    begin
       GS <= '1'; --set default outputs
       A <= "000";
       if I(7) = '1' then
     A <= "111";
       elsif I(6) = '1' then
     A <= "110";
       elsif I(5) = '1' then
     A <= "101";
       elsif I(4) = '1' then
     A <= "100";
       elsif I(3) = '1' then
     A <= "011";
       elsif I(2) = '1' then
     A <= "010";
       elsif I(1) = '1' then
     A <= "001";
       elsif I(0) = '1' then
     A <= "000";
       else
     GS <= '0';
       end if;
    end process;   
 end v1;

关键词:

文章评论评论内容只代表网友观点,与本站立场无关!

   评论摘要(共 0 条,得分 0 分,平均 0 分)

推荐阅读

图文阅读

热门阅读

Copyright © 2007-2017 down.gzweix.Com. All Rights Reserved .
页面执行时间:163,406.30000 毫秒