In reply to chr_sue:
Hi,
In this project i wanted to make a reactive agent and i have created a memory component in slave agent so i wanted to update that memory component through the slave sequencer via write and read API methods because we can not take memory in driver, monitor and sequence.
Slave sequencer has 2 fifo one fifo stores the write and read transactions and other stores the read transactions only. so my slave monitor is sampling the write or read transaction and put it in a fifo which is in the slave sequencer and in the sequencer only i am updating that memory component using API methods, and in another fifo i am putting only read transactions as per the read address with read data so i can retrieve it in the slave sequence.
Thanks.