Built-in uvm_reg_hw_reset_seq

Is it possible to use “uvm_reg_hw_reset_seq” built-in sequence for BACKDOOR access?

In reply to Danil:

HI ,
uvm_reg_hw_reset_seq is to check the power on reset value of the registers (front-door read to each and every registers available) . So to check the reset value of all register(BACKDOOR) we can create a new sequence with minor modification to “uvm_reg_hw_reset_seq” .
If you want to verify the BACKDOOR access for all the registers,then “uvm_reg_access_seq” predefined sequence has the same functionality implemented.

Regards,
Abhijeet

In reply to abhijeet Sahoo:

Thanks abhijeet Sahoo!