UVMag
UVMag

Reputation: 133

What`s the differences between Sequences and Sequence Items?

What are the main differences ? When should I choose to work with sequences and when with sequence items?

Upvotes: 0

Views: 1869

Answers (1)

Qiu
Qiu

Reputation: 5761

A sequence generates a series of sequence_item’s and sends it to the driver via sequencer. Thus, body() method of a sequence defines sequence_item’s that will be used.

On the other hand, a sequence item is the basic transaction used by the driver to drive the interface.

The following picture from UVM Basics tutorial explains it fully:

enter image description here

Upvotes: 1

Related Questions