Getting the response of an individual sequence in virtual sequence

I have register read sequence which I am invoking in the virtual sequence.
How can I get the read data i.e. response from the driver back to reg read sequence and then to virtual sequence.
How this can be achieved without using the configuration.

Thanks in Advance
Jithin

It’s a question of adding a data field to your register read sequence. When you get the response from the driver you assign it to the data field, then the virtual sequence can access this information from the sequence via a hierarchical reference to the data field.

The principle is outlined in:

https://verificationacademy.com/cookbook/Sequences/Generation#Sequence_Object_Persistance

In reply to mperyer:

Thanks mperyer.