- 1、本文档共250页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
case 表达式的注意点 所有分支都要覆盖且不重叠 选择项是静态值 Others用于最后,且唯一 十一、 文本文件操作(TEXTIO) 十五、 决断函数 决断函数定义了当一个信号有多个驱动源时以什么样的方式将这些驱动源的值决断为一个单一的值。 顺序语句和并发语句 3.8 VHDL描述风格 行为描述 数据流(寄存器传输)描述 结构描述 VHDL Design Styles Entity (XOR3 Gate) entity XOR3 is port( A : in STD_LOGIC; B : in STD_LOGIC; C : in STD_LOGIC; RESULT : out STD_LOGIC ); end XOR3; Dataflow Architecture (XOR3 Gate) Dataflow Description Describes how data moves through the system and the various processing steps. Data Flow uses series of concurrent statements to realize logic. Concurrent statements are evaluated at the same time; thus, order of these statements doesn’t matter. Data Flow is most useful style when series of Boolean equations can represent a logic. Structural Architecture (XOR3 Gate) architecture XOR3_STRUCTURAL of XOR3 is signal U1_OUT:STD_LOGIC; component XOR2 is port( I1 : in STD_LOGIC; I2 : in STD_LOGIC; Y : out STD_LOGIC ); end component; begin U1: XOR2 port map (I1 = A, I2 = B, Y = U1_OUT); U2: XOR2 port map (I1 = U1_OUT, I2 = C, Y = RESULT); end XOR3_STRUCTURAL; Component and Instantiation (1) Named association connectivity (recommended) Component and Instantiation (2) Positional association connectivity (not recommended) Structural Description Structural design is the simplest to understand. This style is the closest to schematic capture and utilizes simple building blocks to compose logic functions. Components are interconnected in a hierarchical manner. Structural descriptions may connect simple gates or complex, abstract components. Structural style is useful when expressing a design that is naturally composed of sub-blocks. Behavioral Architecture (XOR Gate) architecture XOR3_BEHAVIORAL of XOR3 is begin XOR3_BEHAVE: process (A,B,C) begin if ((A xor B xor C) = 1) then RESULT = 1; else RESULT = 0; end if; end process XOR3_BEHAVE; end XOR3_BEHAVIORAL; Behavioral Description It
您可能关注的文档
- 第五章 物流成本性态分析与预算管理(上)20095.ppt
- 高级数据库技术-第1章_数据库系统及其理论基础.ppt
- 河流湖泊地形测量技术要求及实施方法.ppt
- 营销管理讲义(修订).ppt
- 附件:上海交通大建造训练.ppt
- 冠军培训-业绩突破之力.ppt
- 机械装备制造技术课件-2 机床设计( 进给传动系、主轴设计2-3).ppt
- FMEA的概念和用机.ppt
- 《有效管理十八项技能》培训讲页.ppt
- (曹贵康版)心理诊断技能.ppt
- 中考语文复习专题二整本书阅读课件.ppt
- 中考语文复习积累与运用课件.ppt
- 2025年初中学业水平考试模拟试题(二)课件.ppt
- 四川省2015届理科综合试题48套第12套.pdf
- 【课件】战争与和平—美术作品反映战争+课件-2024-2025学年高中美术湘美版(2019)美术鉴赏.pptx
- 【课件】青春牢筑国家安全防线 课件 2024-2025学年高中树立总体国家安全观主题班会.pptx
- 【课件】原始人的创造+课件高中美术湘美版(2019)美术鉴赏.pptx
- 上海证券-美容护理行业周报:流量加快去中心化,强运营头部品牌影响较小 -2024-.pdf
- T_CSEIA 1005—2023_能源工业互联网平台数据治理要求.pdf
- T_CDSA 504.16-2023_急流救援技术培训与考核要求.pdf
文档评论(0)