diff --git a/WEEK01/WEEK01.md b/WEEK01/WEEK01.md index fdf549d..1205b0b 100644 --- a/WEEK01/WEEK01.md +++ b/WEEK01/WEEK01.md @@ -101,13 +101,13 @@ When you call a function, the processor needs to remember where to come back to. **Example:** ``` main() calls print_hello() - ↓ + ↓ LR = address right after the call in main() - ↓ + ↓ print_hello() runs - ↓ + ↓ print_hello() finishes, looks at LR - ↓ + ↓ Jumps back to main() at the address stored in LR ```