- 1、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
PLD段码显示
library ieee;
use ieee.std_logic_1164.all;
entity duanma is
port(fff:out bit_vector(1 to 5);
aaa:out bit_vector(1 to 5));
end;
architecture kk of duanma is
begin
fff(1 to 5)=11111;
aaa(1 to 5)=11111;
end;
PLD三个数加法编程
library ieee;
use ieee.std_logic_1164.all;
entity jw is
port(in1,in2:in integer range 0 to 15;
a,b:out std_logic_vector(1 to 7));
end;
architecture gg of jw is
signal he:integer range 0 to 45;
begin
he=in1+in2;
with he select
a=1111110 when 0|10|20|30|40,
0110000 when 1|11|21|31|41,
1101101 when 2|12|22|32|42,
1111001 when 3|13|23|33|43,
0110011 when 4|14|24|34|44,
1011011 when 5|15|25|35|45,
1011111 when 6|16|26|36,
1110000 when 7|17|27|37,
1111111 when 8|18|28|38,
1111011 when 9|19|29|39,
0000000 when others;
with he select
b=0000000 when 0=he and he=9,else
0110000 when 10=he and he=19,else
1101101 when 20=he and he=29,else
1111001 when 30=he and he=39,else
0110011 when 40=he and he=39,else
0000000 when others;
end;
PLD八个按键两个灯
library ieee;
use ieee.std_logic_1164.all;
entity guozi3 is
port(in1,in2:in std_logic_vector(1 to 4);
a,b:out std_logic_vector(1 to 8));
end;
architecture gg of guozi3 is
begin
with in1 select
0110000 when 0001,
1101101 when 0010,
1111001 when 0011,
0110011 when 0100,
1011011 when 0101,
1011111 when 0110,
1110000 when 0111,
1111111 when 1000,
1111011 when 1001,
0000000 when others;
with in2 select
b=0110000when 0001,
1101101 when 0010,
1111001 when 0011,
0110011 when 0100,
1011011 when 0101,
1011111 when 0110,
1110000 when 0111,
1111111 when 1000,
1111011 when 1001,
0000000 when others;
end;
PLD顺序语句编程(0加到9)
library ieee;
use ieee.std_logic_1164.all;
entity jinchen is
port(in1:in std_logic;
a:out std_logic_vector(1 to 7));
end;
architecture gg of jinchen is
signal ss:integer range 0 to 9;
begin
process
begin
wait until in1=1;
ss=ss+1;
if ss=10 then
ss=0;
end if;
end process;
with ss select
a=1111110 when 0,
0110000 when 1,
1101101 when 2,
1111001 when 3,
0110011 when 4,
文档评论(0)