You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This returns after a single delta with no warnings etc that this is what is happening.
For me, it would make more sense if it returned after an AXI transaction has occured. Any reason you cannot simply do the following?
when WAIT_FOR_TRANSACTION =>waituntilrising_edge(clk) and TValid ='1'and TReady ='1';
waitfor0ns; -- possibly wait the extra delta to allow internal queues to get filled
My use case here: I am using an external Queue of data for checking because OSVVM does not currently support CheckAsync functionality. I was hoping I could simply wait until a transaction had occured in the AXIS interface to synchronise to the VC.