第一范文网 - 专业文章范例文档资料分享平台

电子电路 L8- Sequential Circuit Design with Verilog(1) - 图文 

来源:用户分享 时间:2025/6/18 6:27:10 本文由loading 分享 下载这篇文档手机版
说明:文章内容仅供预览,部分内容可能不全,需要完整文档或者需要复制内容,请下载word后使用。下载word有问题请添加微信号:xxxxxxx或QQ:xxxxxx 处理(尽可能给您提供完整文档),感谢您的支持与谅解。

Sequential Circuit Design with VerilogECE 152A –Winter 2012Reading Assignment?Brown and Vranesic?6 Combinational –Circuit Building Blocks?6.6 Verilog for Combinational Circuits???6.6.1 The Conditional Operator6.6.2 The If-Else Statement6.6.3 The Case StatementFebruary 15, 2012ECE 152A -Digital Design Principles2Reading Assignment?Brown and Vranesic(cont)?7 Flip-Flops, Registers, Counters, and a Simple Processor?7.12 Using Storage Elements with CAD Tools?????7.12.2 Using Verilog Constructs for Storage Elements7.12.3 Blocking and Non-Blocking Assignments7.12.4 Non-Blocking Assignments for Combinational Circuits7.12.5 Flip-Flops with Clear Capability7.13.3 Using Verilog Constructs for Registers and CountersECE 152A -Digital Design Principles37.13 Using Registers and Counters with CAD Tools?February 15, 2012The Gated D Latch?Transparent on high phase of clockmodule D_latch(D, Clk, Q);input D, Clk;output Q;regQ;always @(D or Clk)if (Clk)Q = D;endmoduleFebruary 15, 2012ECE 152A -Digital Design Principles4The Gated D Latch?The “if”construct?When D or CLK change value: ?if CLK = 1, set Q = D?Since there is no else, assignment occurs only when CLK = 1??Q follows D when CLK = 1Q remains latched on CLK = 0?“Always”construct triggered by change in value of D or CLK ?Either change can cause the output to changeECE 152A -Digital Design Principles5February 15, 2012

搜索更多关于: 电子电路 L8- Sequential Circuit De 的文档
电子电路 L8- Sequential Circuit Design with Verilog(1) - 图文 .doc 将本文的Word文档下载到电脑,方便复制、编辑、收藏和打印
本文链接:https://www.diyifanwen.net/c8upcy9jzjx5uqa87qzsz8c83h0epna0167s_1.html(转载请注明文章来源)
热门推荐
Copyright © 2012-2023 第一范文网 版权所有 免责声明 | 联系我们
声明 :本网站尊重并保护知识产权,根据《信息网络传播权保护条例》,如果我们转载的作品侵犯了您的权利,请在一个月内通知我们,我们会及时删除。
客服QQ:xxxxxx 邮箱:xxxxxx@qq.com
渝ICP备2023013149号
Top