From 94220f9837d9e6fd37a2b555dd08fbbe0f8a6299 Mon Sep 17 00:00:00 2001 From: Perry Kivolowitz Date: Thu, 9 Jun 2022 19:54:00 -0500 Subject: [PATCH] more of the same --- README.md | 8 ++++---- section_1/for/README.md | 2 +- section_1/while/README.md | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 24bcdc8..74bbc01 100644 --- a/README.md +++ b/README.md @@ -45,10 +45,10 @@ the 64 bit ARM Instruction Set Architecture (ISA). | 1 | [Hello World](./section_1/hello_world/README.md) | | 2 | [If Statements](./section_1/if/README.md) | | 3 | Loops | -| 3A | [While Loops](./section_1/while/README.md) | -| 3B | [For Loops](./section_1/for/README.md) | -| 3C | [Continue](./section_1/for/README.md#implementing-a-continue) -| 3D | [Break](./section_1/for/README.md#implementing-a-break) +| 3 a | [   While Loops](./section_1/while/README.md) | +| 3 b | [   For Loops](./section_1/for/README.md) | +| 3 c | [   Implementing Continue](./section_1/for/README.md#implementing-a-continue) +| 3 d | [   Implementing Break](./section_1/for/README.md#implementing-a-break) | 4 | [Interlude - Registers](./section_1/regs/README.md) | | 5 | [Interlude - Load and Store](./section_1/regs/ldr.md) | | 6 | [Calling and Returning From Functions](./section_1/funcs/README.md) | diff --git a/section_1/for/README.md b/section_1/for/README.md index 756c4fc..5361658 100644 --- a/section_1/for/README.md +++ b/section_1/for/README.md @@ -1,4 +1,4 @@ -# Section 1 / Chapter 4 / For Loops, Continue and Break +# Section 1 / Chapters 3 b, c and d / For Loops, Continue and Break ## Overview diff --git a/section_1/while/README.md b/section_1/while/README.md index 97a8730..eaa5d6d 100644 --- a/section_1/while/README.md +++ b/section_1/while/README.md @@ -1,4 +1,4 @@ -# Section 1 / Chapter 3 / While Loops +# Section 1 / Chapter 3 a / While Loops ## Overview