I’m using CoveragePkg.vhd,
I have some bins which I’m using to drive the simulation, using GenBin and setting an ‘AtLeast’ value. This works OK.
I have some illegal bins, using IllegalBin (‘AtLeast’ value is zero) This works OK.
I want to have some bins which do not drive the simulation, but which I’d like to know if they’ve been hit or not. I have 2 options:
- If I use GenBin with AtLeast set to zero, an AtLeast value of 1 is enforced (so if the bin isn’t hit then I can’t check IsCovered).
- If I use IgnoreBin then when I WriteBin they are not reported so I can’t see if the bins have been hit or not.
Is it possible to have bins which do not affect IsCovered if they have zero count, but do get reported so I can see whether they have a count or not?