Reset WO register fields

I have a register model that has registers w/ fields that are write-only. In the design when it reads a register that is write-only it returns 0xF0F0F0F0 as expected. I tried to update the register model by doing register.set_reset(.value('hF0F0F0F0)), but it doesn’t seem to work. The register predictor sees it as a mis-compare with the mirror value being 0xXXXX.

In reply to DVCoder:

set_reset modifys the reset value of a given rtegister. It does not reset the register itself.
The function reset rests the register itself.