Reply To: GetCov

Why OSVVM™? Forums OSVVM GetCov Reply To: GetCov

#870
Jim Lewis
Member

Hi Andreas,

It is a function and returns a value of type real.   You need to assign it to a variable or signal of type real. 

shared variable cov_status : CovPType ;
. . .
variable CurCov : real ; 
. . .
CurCov := cov_status.GetCov; 

Jim