From d80190dc3363a4ad88ba73e16e957ea466bb25d0 Mon Sep 17 00:00:00 2001 From: Kevin Thomas Date: Thu, 30 Jul 2026 14:29:33 -0400 Subject: [PATCH] Update WEEK01.md --- WEEK01/WEEK01.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 ```