Featured post

Top 5 books to refer for a VHDL beginner

VHDL (VHSIC-HDL, Very High-Speed Integrated Circuit Hardware Description Language) is a hardware description language used in electronic des...

Sunday 9 September 2012

Intra-assignment Timing Controls

Formal Definition

The intra-assignment timing controls are procedural timing controls, which can be used inside procedural assignments.

Simplified Syntax

register = delay_control expression;

register <= delay_control expression;

register = event_control expression;

register <= event_control expression;

register = repeat (expression) @(event) expression;

register <= repeat (expression) @(event) expression;

Description

All intra-assignment timing controls should be used with procedural assignments. They can be used with blocking and non-blocking assignments. If a statement with intra-assignment timing controls is encountered during simulation, an expression will be evaluated and its value will be stored. Then, the execution of the statement will be suspended until the time specified by the delay control expires or an event specified by the event control occurs. Changes in the expression value up to the time of the event will be ignored. Next, the stored value will be assigned to the register.

Type

Assignment

Equivalent

Delay with assignment

#5 a = b;

#5;
a = b;

Intra-assignment

a = #5 b;

temp = b;
#5;
a = temp;

Table 7 Differences beetwen delays and intra-assignment timing control

A delay with an assignment works differently. An assignment will be delayed and then the current value of expression will be assigned.

The repeat expression specifies how many occurrences of an event should appear before the assignment takes place (Example 3).

Examples

Example 1

r_out = #10 inputA;

This is the same as:

temp = inputA;
#10;
r_out = temp;

Example 2

q = @(posedge clk) d;

This is the same as:

temp = d;
@(posedge clk);
q = temp;

Example 3

a = repeat (5) @(ready) b & c;

This is the same as:

Temp = b & c;
@(ready);
@(ready);
@(ready);
@(ready);
@(ready);
a = temp;

Important Notes

  • If a statement contains intra-assignment timing controls, its right hand side expression is evaluated and its value is assigned after the time specified by the delay control or after an event specified by event control.

No comments:

Post a Comment

Please provide valuable comments and suggestions for our motivation. Feel free to write down any query if you have regarding this post.