How to read a data one clock cycle in advance without applying delay ? If the delay is applied my address comparison is failing.
data2=vif.Q;
if(data2 == data_solid1)
This will read in the current clock cycle. But I want to read the data in the `next clock cycle without delay.
Thanks