What is difference between RETI and RET? regards, peter.
The difference is slight, both take the return address from the stack. What is different is that RETI releases the interrupts of the same level of priority than the interrupt that has caused the branch, and RET doesn't. Sometimes it can be useful to use RET instead of RETI - I did it several times and I also saw it in PHILIPS' Application Notes. Regards, Michael.
Can you be more specific about the difference between RET and RETI, with regard to the other interrupts? Can RET be used in place of RETI?