Hello,
Let us say, I have an array
bit [7:0] value[65];
I want to define coverbins of this variable where I want to check each index of value has been configured with all its possible value.
[value[0] has all values between 0 to 255 and same with all value index]
Also, I want to check the cross for each value index.
[when value[0] = 1, value[1] to value[64] has all values between 0 to 255 and same for all possible cross]
Code with dedicated value is not a good solution I feel, is there any better way?