- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
可编程实验报告_VHDL2
《可编程逻辑器件》实验报告
学习Quartus II应用软件的基本操作。
初步掌握用Quartus II设计数字电路的流程和调试方法。
学会用基本的VHDL语言编写基本组合逻辑电路和时序逻辑电路。
实验大纲:
了解74系列各芯片所具有的功能。
通过编写VHDL代码来实现74系列部分芯片的电路功能。
实验内容:
实验1——74ls157(4二选一选择器)
74ls157为4组二选一数据选择器,数据选择端g为4组共用,当g为低电平时,选取a(a1,a2,a3,a4)端的数据,当g为高电平时,选取b(b1,b2,b3,b4)端的数据。
library ieee;
use ieee.std_logic_1164.all;
entity ls157 is
port (a,b: in std_logic_vector(3 downto 0);
g : in std_logic;
y : out std_logic_vector(3 downto 0));
end;
architecture one of ls157 is
begin
process(g)
begin
if g=0 then
y=a;
else
y=b;
end if;
end process;
end architecture one ;
实验二——74ls04 (6一输入非门)
74ls04为简单的六组反相器,六路输出直接就等于各对应六路输入的非,直接用not语句即可实现74ls04的功能。
library ieee;
use ieee.std_logic_1164.all;
entity ls04 is
port (a : in std_logic_vector(5 downto 0);
y : out std_logic_vector(5 downto 0));
end;
architecture one of ls04 is
begin
y = not a;
end architecture one ;
实验三——74ls08(4二输入与门)
74LS08为4组二输入与门,每组输出为其两个输入值相与,直接用and语句即可实现此芯片的功能。
library ieee;
use ieee.std_logic_1164.all;
entity ls08 is
port (a,b : in std_logic_vector(3 downto 0);
y : out std_logic_vector(3 downto 0));
end;
architecture one of ls08 is
begin
y = a and b;
end architecture one ;
实验四——74ls10(3三输入与非门)
74LS10为3组三输入与非门,每组输出为其三个输入值相与后再进行取反,先用and语句再用not语句即可实现此芯片的功能。
library ieee;
use ieee.std_logic_1164.all;
entity ls10 is
port (a,b,c : in std_logic_vector(2 downto 0);
y : out std_logic_vector(2 downto 0));
end;
architecture one of ls10 is
begin
y = not (a and b and c);
end architecture one ;
实验五 ——74ls32 (4二输入或门)
74LS32为4组二输入或门,每组输出为其两个输入值相或,直接用or语句即可实现此芯片的功能。
library ieee;
use ieee.std_logic_1164.all;
entity ls32 is
port (a,b : in std_logic_vector(3 downto 0);
y : out std_logic_vector(3 downto 0));
end;
architecture one of ls32 is
begin
y = a or b;
en
文档评论(0)