- 1、本文档共22页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
* Digital Logic Chapter5 – Hardware Description Languages * Introduction Hardware description language (HDL): allows designer to specify logic function only. Then a computer-aided design (CAD) tool produces the optimized gates. Most commercial designs is built using HDLs Three leading HDLs: ABEL (Advanced Boolean Equation Language) Started as a synthesizable design language Specifically targeted to PAL devices VHDL Verilog Started out as simulation languages Allowing a digital system’s hardware to be described and its operations to be simulated on a computer * 5.1.2 HDL Tool Suites Text editor Compiler Synthesizer Simulator Transforms HDL code into a netlist describing the hardware (i.e., a list of gates and the wires connecting them) -Input values are applied to the circuit -Outputs checked for correctness -Millions of dollars saved by debugging in simulation instead of hardware 5.1 HDL-Based Digital Design Parsing the HDL program, finding syntax errors * hierarchy/ block diagram coding compilation simulation/ verification synthesis fitting/ place+route timing verification 5.1.3 HDL-Based Design Flow Design flow—steps in an HDL-based design process 5.3 The VHDL Hardware Description Language VHSIC Hardware Description Language Very High Speed Integrated Circuit Development sponsored by the IEEE and the US DoD in mid-1980s Based on ADA (somehow similar to Pascal) A simple example : The Full Adder Full Adder Cin Cout S B A library IEEE; use IEEE.std_logic_1164.all; entity full_adder is -- a one-bit full adder port ( A, B, Cin: in BIT; -- Three binary inputs S, Cout: out BIT); -- Two binary outputs end full_adder; entity declaration Example: The Full Adder architecture full_adder_arch of full_adder is begin S = A xor B xor Cin; Cout = (B and Cin) or (A and Cin) or (A and B); end full_adder_arch; Cout = BCin + ACin + AB S = A’BCin’ + A’B’Cin + AB’Cin’ + ABCin = A’(BCin’ + B
您可能关注的文档
- 《医学影像学教学-福州总医院》胸部实习幻灯(福建医大).ppt
- 《移动通信实验报告》实验七 TDMA(时分多址)移动通信1.doc
- 《移动通信实验报告》实验七 TDMA(时分多址)移动通信2.pdf
- 《移动通信实验报告》实验七 TDMA(时分多址)移动通信3.doc
- 《移动通信实验报告》实验七 TDMA(时分多址)移动通信4.doc
- 《移动通信实验报告》实验七 TDMA(时分多址)移动通信5.doc
- 《医学影像学教学-福州总医院》影像CNS.ppt
- 《移动通信实验报告》实验七 TDMA(时分多址)移动通信6.doc
- 《移动通信实验报告》实验七 TDMA(时分多址)移动通信7.doc
- 《移动通信实验报告》实验七 TDMA(时分多址)移动通信8.doc
- Digital Logical Circuit(俞鹤伟)chapter5-b.ppt
- Digital Logical Circuit(俞鹤伟)chapter5-c.ppt
- Digital Logical Circuit(俞鹤伟)chapter6-a.ppt
- Digital Logical Circuit(俞鹤伟)chapter6-b.ppt
- Digital Logical Circuit(俞鹤伟)chapter6-c.ppt
- Digital Logical Circuit(俞鹤伟)chapter7-a.ppt
- Digital Logical Circuit(俞鹤伟)chapter7-b.ppt
- Digital Logical Circuit(俞鹤伟)chapter7-c.ppt
- Digital Logical Circuit(俞鹤伟)chapter8.ppt
- Digital Logical Circuit(俞鹤伟)Solution of homeworks.doc
最近下载
- 2025年中国电子信息产业集团有限公司招聘笔试参考题库含答案解析.pdf
- 《电磁兼容+试验和测量技术+第11部分:对每相输入电流小于或等于16+a设备的电压暂降、短时中断和电压变化抗扰度试验gbt 17626.11-2023》详细解读 .pdf
- 合肥市申领居住证的申请.docx
- 高考二轮复习资料专题二2.2 动能定理和动量定理(二).doc VIP
- 2024年重庆市中考地理试题卷(含官方答案及解析).docx
- 湖北省恩施市第一中学2025届高三最后一模数学试题含解析.doc
- 2024年河南经贸职业学院单招职业技能测试题库及答案解析.pdf VIP
- 2022年版语文课程标准新课标考试题库及答案6.pdf
- 试卷讲评教学反思(8篇).pdf VIP
- 钢结构施工技术交底..doc VIP
文档评论(0)