Distributed Delay

Distributed delay is delay assigned to each gate in a module. An example circuit is shown below.

As can be seen from Figure 1, each of the or-gates in the circuit above has a delay assigned to it:

  • gate 1 has a delay of 4
  • gate 2 has a delay of 6
  • gate 3 has a delay of 3
  • When the input of any gate change, the output of the gate changes after the delay value specified.

    The gate function and delay, for example for gate 1, can be described in the following manner:

    or #4 a1 (e, a, b);

    A delay of 4 is assigned to the or-gate. This means that the output of the gate, e, is delayed by 4 from the inputs a and b.

    The module explaining Figure 1 can be of two forms:

    Version 1 models the circuit by assigning delay values to individual gates, while version 2 use delay values in individual assign statements. (An assign statement allows us to describe a combinational logic function without regard to its actual structural implementation. This means that the assign statement does not contain any modules with port connections.)

    The above or_circ modules results in delays of (4+3) = 7 and (6+3) = 9 for the 4 connections part from the input to the output of the circuit.

    contents next