AVR® Stack Register

Last modified by Microchip on 2023/11/09 09:02

8-bit AVR® Stack

The stack is mainly used for storing temporary data, local variables, and return addresses after interrupts and subroutine calls. It is implemented as growing from higher to lower memory locations. The Stack Pointer register always points to the top of the stack; it points to the data SRAM stack area where the subroutine and interrupt stacks are located.

Stack Pointer

Stack Pointer

The AVR Stack Pointer is implemented as two 8-bit registers in the I/O space. The number of bits actually used depends on the implementation.

Data space in some implementations of the AVR architecture is so small that only the Stack Pointer Low (SPL) register is needed. In this case, the Stack Pointer High (SPH) register will not be present.

Stack Instruction Set

Stack Instruction Set

A stack PUSH command will decrease the Stack Pointer. The stack in the data SRAM must be defined by the program before any subroutine calls are executed or interrupts are enabled. The initial Stack Pointer value equals the last address of the internal SRAM and the Stack Pointer must be set to point above the start of the SRAM.