zoukankan      html  css  js  c++  java
  • 【原创】The solutional manual of the Verilog HDL: A Guide to Digital Design and Synthesis (2nd)ch10

    Chapter 10. Timing and Delays

    10.6 Exercises

    1. What type of delay model is used in the following circuit? Write the Verilog description for the module Y.

    clip_image002

    my answer:

    Distributed Delay.

    clip_image004

    clip_image006

    clip_image008

    2. Use the largest delay in the module to convert the circuit to a lumped delay model. Using a lumped delay model, write the Verilog description for the module Y.

    my answer:

    clip_image010

    3. Compute the delays along each path from input to output for the circuit in Exercise 1. Write the Verilog description, using the path delay model. Use specify blocks.

    my answer:

    clip_image012

    4. Consider the negative edge-triggered with the asynchronous reset D-flipflop shown in the figure below. Write the Verilog description for the module D_FF. Show only the I/O ports and path delay specification. Describe path delays, using parallel connection.

    clip_image014

    my answer:

    clip_image016

    clip_image018

    5. Modify the D-flipflop in Exercise 4 if all path dealys are 5 units. Describe the path delays, using full connections to q and qbar.

    my answer:

    clip_image020

    6. Assume that a six-delay specification is to be specified for all path delays. All path delays are equal. In the specify block, define parameters t_01=4,t_10=5,t_0z=7,t_z1=2,t_1z=3,t_z0=8. Use the D-flipflop in Exercise 4 and write the six-delay specification for all paths, using full connections.

    my answer:

    clip_image022

    7. In Exercise 4,modify the delay specification for the D-flipflop if the delays are dependent on the value of d as follws:

    clock -> q = 5 for d = 1'b0, clock -> q= 6 otherwise
    clock -> qbar = 4 for d = 1'b0, clock ->qbar = 7 otherwise

    All other delays are 5 units.

    my answer:

    clip_image024

    8. For the D-flipflop in Exercise 7, add timing checks for the D_flipflop in the specify block as follows:

    The minimum setup time for d with respect to clock is 8.

    The minimum hold time for d with respect to clock is 4.

    The reset signal is active high. The minimum width of a reset pulse is 42.

    my answer:

    clip_image026

    9. Describe delay back-annotation. Draw the flow diagram for delay back-annotation.

    Reference

    Smair Palnitkar, <Verilog HDL: A Guide to Digital Design and Synthesis (2nd) >

  • 相关阅读:
    Java随学随记
    jquery的bind()和trigger()
    js跨域访问
    好文推荐系列-------(5)js模块化编程
    好文推荐系列---------(4)使用Yeoman自动构建Ember项目
    好文推荐系列--------(3)GruntJS 在线重载 提升生产率至新境界
    好文推荐系列--------(2)GruntJS——重复乏味的工作总会有人做(反正我不做)
    好文推荐系列--------(1)bower---管理你的客户端依赖
    英文邮件写作
    原型
  • 原文地址:https://www.cnblogs.com/halflife/p/1995847.html
Copyright © 2011-2022 走看看