Jump to content

Control verification components from sequence


Recommended Posts

One way to do this is to add an analysis port to your sequencer. Your sequence can now broadcast an event through the analysis port using:

p_sequencer.<analysis_port_name>.write(<whatever>);

Components that need to detect this event can subscribe to this analysis port.

Edited by phuynh
Link to comment
Share on other sites

One way to do this is to add an analysis port to your sequencer. Your sequence can now broadcast an event through the analysis port using:

p_sequencer.<analysis_port_name>.write(<whatever>);

Components that need to detect this event can subscribe to this analysis port.

Thank you, I didn't know you can do this.

Link to comment
Share on other sites

  • 2 weeks later...

One way to do this is to add an analysis port to your sequencer. Your sequence can now broadcast an event through the analysis port using:

p_sequencer.<analysis_port_name>.write(<whatever>);

Components that need to detect this event can subscribe to this analysis port.

You said "one way to do this". Is there any other ways?

Link to comment
Share on other sites

You said "one way to do this". Is there any other ways?

I think your monitor checking code itself can be made conditional based on a configuration variable in your agent cfg object. You can disable the monitor checking by default, and then when your initialization/configuration sequence is done, your sequence can get the env/agent cfg object and enable the checking.
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...