You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# The stack
|
|
|
|
The stack is a continuous region of memory, located somewhere. The stack grows "downwards", meaning new values are pushed like this:
|
|
```asm
|
|
add sp, sp, -4
|
|
sw a0, sp, 0
|
|
|
|
```
|
|
|
|
|