After RETI instruction is executed then the pointer will move to which location in the program?

After RETI instruction is executed then the pointer will move to which location in the program? Correct Answer immediate next instruction where interrupt is occurred

When the RETI instruction is executed, PC will fetch 2-bytes (address) from top of stack which is stored when interrupt is occurred. This will return to the place where interrupt is occurred and starts executing instructions.

Related Questions

The correct statement for a function that takes pointer to a float, a pointer to a pointer to a char and returns a pointer to a pointer to a integer is ____________
The correct statement for a function that takes pointer to a float, a pointer to a pointer to a char and returns a pointer to a pointer to a integer is
When a "CALL Addr" instruction is executed, the CPU carries out the following sequential operations internally. Note: (R) means content of register R ((R)) means content of memory location pointed to by R PC means Program Counter SP means Stack Pointer
Why RETI instruction be the last instruction of ISR?