Control sequences & tasks/functions using virtual sequences

Hi All,

I have used virtual sequences for controlling multiple sequences.
But recently in discussions, I have came across we can control sequences & tasks/functions using virtual sequences.
I have browsed a lot, did not find any documents that describes this implementation.
If its possible, can you help me how to implement this?

In reply to Alan1990:

It is a little bit confusing what you are asking.
Virtual sequences are a proper means to control the execution of agent’s sequences. I believe this is what you mean in your first sentence.
But I do onot understand the remaining part of your question. Virtual sequences can start only other sequences. You might run more than 1 virtual sequence. But virtual sequences cannot be used to call tasks or functions. But you can call tasks and functions in the body method of your sequence.

In reply to chr_sue:

In reply to Alan1990:
It is a little bit confusing what you are asking.
Virtual sequences are a proper means to control the execution of agent’s sequences. I believe this is what you mean in your first sentence.
But I do onot understand the remaining part of your question. Virtual sequences can start only other sequences. You might run more than 1 virtual sequence. But virtual sequences cannot be used to call tasks or functions. But you can call tasks and functions in the body method of your sequence.

Thanks chr_sue.
We are planing to have tasks/functions to backdoor accessing memories as well as C tasks to be imported by DPI for configuration. Other than using sequences , is there any way to control these from virtual sequences ?

In reply to Alan1990:

What I said is you can use c-tasks and functions inside the body method of a sequence. For backdoor access of memories you do not need specific c-code. This is provided by the RAL methods.

Thanks chr_sue.