What is the mechanism used to preserve the status register, sreg, in an AVR microcontroller? RETI
implies that these bits are not on the stack. Is one of the general purpose registers also the sreg or something like that?
Preserving sreg in AVR interrupts
14.6k Views Asked by old_timer At
2
This is explained in every AVR datasheet. For example on page 8 of the ATtiny2313 datasheet it says:
You can achieve this by storing it in a temporary register:
Also note that if you're accessing registers that are not exclusively used in this interrupt routine, you need to save those, too. Furthermore you can push the value of SREG to the stack if you're low on registers:
For more information look here.