VHDL语言 四选一数据选择器 多种描述.doc

VHDL语言 四选一数据选择器 多种描述.doc

ID:57691284

大小:16.50 KB

页数:3页

时间:2020-09-01

VHDL语言 四选一数据选择器 多种描述.doc_第1页
VHDL语言 四选一数据选择器 多种描述.doc_第2页
VHDL语言 四选一数据选择器 多种描述.doc_第3页
资源描述:

《VHDL语言 四选一数据选择器 多种描述.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、使用if_then语句来描述四选一数据选择器libraryieee;useieee.std_logic_1164.all;entityzeisport(s0,s1:instd_logic;a,b,c,d:instd_logic;y:outstd_logic);endze;architectureabofzeissignals:std_logic_vector(1downto0);begins<=s1&s0;process(s)beginifs<="00"theny<=a;elsifs<="01"the

2、ny<=b;elsifs<="10"theny<=c;elsey<=d;endif;endprocess;endab;使用case语句来描述四选一数据选择器libraryieee;useieee.std_logic_1164.all;entityxuanisport(s0,s1:instd_logic;a,b,c,d:instd_logic;y:outstd_logic);endxuan;architectureabofxuanissignals:std_logic_vector(1downto0);

3、begins<=s1&s0;process(s)begincasesiswhen"00"=>y<=a;when"01"=>y<=b;when"10"=>y<=c;when"11"=>y<=d;whenothers=>null;endcase;endprocess;endab;使用when_else语句来描述四选一数据选择器libraryieee;useieee.std_logic_1164.all;entityxuanisport(s0,s1:instd_logic;a,b,c,d:instd_log

4、ic;y:outstd_logic);endxuan;architectureabofxuanissignals:std_logic_vector(1downto0);begins<=s1&s0;y<=awhens<="00"elsebwhens<="01"elsecwhens<="10"elsed;endab;

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。