- 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
- 某县纪委监委开展“校园餐”突出问题专项整治工作汇报22.docx
- 中小学校园食品安全与膳食经费管理专项整治工作自查报告66.docx
- 某县委常委、宣传部部长年度民主生活会“四个带头”个人对照检查发言材料.docx
- XX县委领导班子年度述职述廉报告3.docx
- 某县纪委关于校园餐问题整治工作落实情况的报告.docx
- 中小学校园食品安全与膳食经费管理专项整治工作自查报告22.docx
- 某县税务局党委领导班子年度民主生活会“四个带头”对照检查材料.docx
- 某县委书记在县委常委班子年度民主生活会专题学习会上的讲话.docx
- 某县纪委校园餐问题整治工作落实情况的报告.docx
- 某区委副书记、区长年度民主生活会对照检查材料.docx
文档评论(0)