首 页文档资料下载资料维修视频包年699元
请登录  |  免费注册
当前位置:精通维修下载 > 文档资料 > 家电技术 > 维修教程知识 > 学习园地
[VHDL实例]多路选择器(使用case语句)
来源:本站整理  作者:佚名  2006-07-19 19:10:18



-- Multiplexer 16-to-4 using if-then-elsif-else Statement

use ieee.std_logIC_1164.all;

 

entity mux is port(

        a, b, c, d:     in std_logic_vector(3 downto 0);

        s:              in std_logic_vector(1 downto 0);

        x:              out std_logic_vector(3 downto 0));

end mux;

 

architecture archmux of mux is

begin

mux4_1: process (a, b, c, d)

        begin

                if s = "00" then

                        x <= a;

                elsif s = "01" then

                        x <= b;

                elsif s = "10" then

                        x <= c;

                else

                        x <= d;

                end if;

        end process mux4_1;

end archmux;

 

关键词:

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

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

推荐阅读

图文阅读

热门阅读

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