Update WEEK01.md

This commit is contained in:
Kevin Thomas
2026-07-30 14:29:33 -04:00
committed by GitHub
parent a605492a9c
commit d80190dc33
+4 -4
View File
@@ -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
```