Reading data from the Sequence into Scoreboard

Hi,

I had an requirement in which I need to read register value from the sequence upon arrival of the interrupt. The register is not part of the interface, now for comparison I need the read value in my scoreboard. How can I pass this value from sequence to scoreboard/monitor?
I can use config_db in p_sequencer set a value and read it out in scoreboard, or is there any better way?

In reply to shivanan:
This is the benfit of having the RAL in your testbench. You make simply a get on the corresponding register in your scoreboard.

In reply to chr_sue:

Thanks chr_sue for your quick response.
Is the RAL only way to get the desired result? Please let me know if there is any other method if possible since RAL is not working as expected for the current environment.

In reply to shivanan:

You have always to take care both register implementations are synchronous. Before doing the get you have to cal ‘update’.

In reply to chr_sue:

Okay. Thanks for your inputs.