- 1、本文档共58页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
ispLever使用教程
下载 2、VHDL的原理图方式设计 (八)ISPLEVER 软件的使用方法 点击File —New Project 选器件 点击下一步 点击完成 点击Source —New 后面的操作同前 作业:用VHDL语言: 1、设计一个3线-8线译码器; 2、设计一个上升沿触发JK触发器。 CLR J Q K library ieee; use ieee.std_logic_1164.all; entity dff1 is port(clk,d:in std_logic; q:out std_logic); end; architecture rtl of dff1 is begin process(clk) begin if(clkevent and clk=1)then q=d; end if; end process; end rtl; library ieee; use ieee.std_logic_1164.all; entity and_gate is PORT(A,B:IN std_logic;X:OUT std_logic); end; architecture rtl of and_gate is begin X=A AND B; end rtl; library ieee; use ieee.std_logic_1164.all; entity decoder_38 is PORT(input:IN std_logic_vector(2 downto 0); output:OUT std_logic_vector(7 downto 0)); end; architecture rtl1 of and_gate is begin X=A AND B; end rtl1; library ieee; use ieee.std_logic_1164.all; entity decoder is PORT(input:IN std_logic_vector(2 downto 0); output:OUT std_logic_vector(7 downto 0)); end; architecture rtl1 of decoder is begin process(input) case input is when 0=output when 1=output when 2=output when 3=output when 4=output when 5=output when 6=output when 7=output end case; end process; end rtl1; library ieee; use ieee.std_logic_1164.all; entity decoder is PORT(input:IN std_logic_vector(2 downto 0); yout:OUT std_logic_vector(7 downto 0)); end; architecture rtl1 of decoder is begin process(input) case input is when 000=yout when 001=yout when 010=yout when 011=yout when 100=yout when 101=yout when 110=yout when 111=yout end case; end process; end rtl1; library ieee; use ieee.std_logic_1164.all; entity ym3_8 is port(a:in std_logic_vector(2 down
您可能关注的文档
- 2017中国地理(上)第一章-从世界看中国-(共36张).ppt
- 2017一年级语文学习注意事项.pptx
- 2017初中数学规律题.ppt
- 2017-2018学年八年级地理上册课件(人教版)3.1-自然资源的基本特征-(共24张).ppt
- 2017届一轮复习实现人生的价值.ppt
- 2017商务工作汇报模板-(五).pptx
- 2017届高中政 治一轮复习-我国公民的政 治参与.ppt
- 2017届高三地理-一轮复习建议.ppt
- 2017年必威体育精装版-影响价格的因素.ppt
- 2017年高考数学备考讲座做得精细-考得精彩——高三数学第一轮复习策略2016.9(23张).ppt
- 人教版九年级英语全一册单元速记•巧练Unit13【速记清单】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit9【速记清单】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit11【速记清单】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit14【单元测试·提升卷】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit8【速记清单】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit4【单元测试·提升卷】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit13【单元测试·基础卷】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit7【速记清单】(原卷版+解析).docx
- 苏教版五年级上册数学分层作业设计 2.2 三角形的面积(附答案).docx
- 人教版九年级英语全一册单元速记•巧练Unit12【单元测试·基础卷】(原卷版+解析).docx
文档评论(0)