收藏 分享(赏)

数据库 ch9_8_2m.ppt

上传人:hskm5268 文档编号:8179341 上传时间:2019-06-13 格式:PPT 页数:35 大小:739KB
下载 相关 举报
数据库 ch9_8_2m.ppt_第1页
第1页 / 共35页
数据库 ch9_8_2m.ppt_第2页
第2页 / 共35页
数据库 ch9_8_2m.ppt_第3页
第3页 / 共35页
数据库 ch9_8_2m.ppt_第4页
第4页 / 共35页
数据库 ch9_8_2m.ppt_第5页
第5页 / 共35页
点击查看更多>>
资源描述

1、未经作者允许,请勿发布该文档! ,VHDL,Simulation & Synthesis,Agenda,Design Tips Example Analysis,Speed Bottleneck in Sequential Logic,Balance of The Combinatorial Logic Blocks,Pipeline For Speed,Save Synthesis Time,Drive Problem? Shadow Register,Drive Problem? Buffer,Control Delay,?,Setup & Hold Time,D QCLK,D CLK,t

2、setuo thold,Maybe Too Fast To Satisfy Setup/Hold Time,Clock Input Q_A/D_B Q_B,Hold time for D_B ?,Extra Delay Between DFFs,Clock Enable,D Q,Enable,D Q,Enable,Clock Skew,Bad Clock,Good Clock,Ripple Clock,Parallel Clock,Glitch (1),Glitch (2),Asynchronies Clock (1),Asynchronies Clock (2),Synchronized b

3、y CLK_B,Asynchronies Clock (3),Edge detection is synchronized by 20M_CLK,Retiming (1),Retiming (2),State Machine Model,A Better State Machine Models,Dissimilar FFs (Bad Code),library ieee; use ieee.std_logic_1164.all; entity badFFstyle is port ( clk : in std_logic; rst_n : in std_logic; d : in std_l

4、ogic; q2 : out std_logic); end badFFstyle; architecture rtl of badFFstyle is signal q1 : std_logic; begin process (clk) begin if (clkevent and clk = 1) then if (rst_n = 0) then q1 = 0; -q2? else q1 = d; q2 = q1; end if; end if; end process; end rtl;,Dissimilar FFs (Good Code),library ieee; use ieee.

5、std_logic_1164.all; entity goodFFstyle is port ( clk : in std_logic; rst_n : in std_logic; d : in std_logic; q2 : out std_logic); end goodFFstyle; architecture rtl of goodFFstyle is signal q1 : std_logic; begin process (clk) begin if (clkevent and clk = 1) then if (rst_n = 0) then q1 = 0; else q1 = d; end if; end if; end process;,process (clk) begin if (clkevent and clk = 1) thenq2 = q1; end if; end process; end rtl;,Parentheses & Speed,Make It Simple,If-else-then HW,Case-when HW,Unintentional Latches,

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 企业管理 > 管理学资料

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报