Hi @Dinesh_Guleria,
There is a lot of useful information in the thread, please read it again.
An example on S32K116:
Read an unimplemented memory (0x80000):
volatile uint32_t read = *((uint32_t*)0x00080000);
void HardFault_Handler(void){
while(1){
}
}
Read the stack from the fault handler

In memory view, SP + 0x18

Find the instruction:

Regards,
Daniel