From b855b917314ae5b23ab29d958f6661b19fbf6ef6 Mon Sep 17 00:00:00 2001 From: Perry Kivolowitz Date: Mon, 20 Jun 2022 10:46:10 -0500 Subject: [PATCH] Header change - added working.md but it is still empty --- section_1/float/working.md | 0 section_1/for/README.md | 2 +- section_1/funcs/README.md | 2 +- section_1/funcs/README2.md | 2 +- section_1/hello_world/README.md | 2 +- section_1/if/README.md | 2 +- section_1/regs/README.md | 2 +- section_1/regs/ldr.md | 2 +- section_1/regs/ldr2.md | 2 +- 9 files changed, 8 insertions(+), 8 deletions(-) create mode 100644 section_1/float/working.md diff --git a/section_1/float/working.md b/section_1/float/working.md new file mode 100644 index 0000000..e69de29 diff --git a/section_1/for/README.md b/section_1/for/README.md index 32fb643..1e01d82 100644 --- a/section_1/for/README.md +++ b/section_1/for/README.md @@ -1,4 +1,4 @@ -# For Loops, Continue and Break +# Section 1 / For Loops, Continue and Break ## Overview diff --git a/section_1/funcs/README.md b/section_1/funcs/README.md index 2547bea..8fa1c22 100644 --- a/section_1/funcs/README.md +++ b/section_1/funcs/README.md @@ -1,4 +1,4 @@ -# Calling and Returning From Functions +# Section 1 / Calling and Returning From Functions Calling functions, passing parameters to them and receiving back return values is basic to using `C` and and `C++`. Calling methods (which are functions connected to classes) is similar but with enough differences to warrant its own discussion to be provided later in the chapter on [structs](../struct/structs.md). diff --git a/section_1/funcs/README2.md b/section_1/funcs/README2.md index 96a8baa..8f76c62 100644 --- a/section_1/funcs/README2.md +++ b/section_1/funcs/README2.md @@ -1,4 +1,4 @@ -# Passing Parameters To Functions +# Section 1 / Passing Parameters To Functions Up to 8 parameters can be passed directly via registers. Each parameter can be up to the size of an address, long or double (8 bytes). If you need to pass more than 8 parameters or you need to pass parameters which are larger than 8 bytes or are `structs`, you would use a different technique described later. diff --git a/section_1/hello_world/README.md b/section_1/hello_world/README.md index d54e47b..6a5a32a 100644 --- a/section_1/hello_world/README.md +++ b/section_1/hello_world/README.md @@ -1,4 +1,4 @@ -# Hello World +# Section 1 / Hello World ## Overview diff --git a/section_1/if/README.md b/section_1/if/README.md index a9fc8eb..e197e37 100644 --- a/section_1/if/README.md +++ b/section_1/if/README.md @@ -1,4 +1,4 @@ -# The `if` Statement +# Section 1 / The `if` Statement We will begin with the `if` statement followed by a discussion of the `if / else`. diff --git a/section_1/regs/README.md b/section_1/regs/README.md index ef41068..9233c77 100644 --- a/section_1/regs/README.md +++ b/section_1/regs/README.md @@ -1,4 +1,4 @@ -# Interlude - Registers +# Section 1 / Interlude - Registers We have discussed and used registers in the previous chapters without explanation. This chapter introduces the concept of registers and explains why registers are critical. diff --git a/section_1/regs/ldr.md b/section_1/regs/ldr.md index 5e7f36e..3455ed3 100644 --- a/section_1/regs/ldr.md +++ b/section_1/regs/ldr.md @@ -1,4 +1,4 @@ -# Interlude - Load and Store +# Section 1 / Interlude - Load and Store In this section we will review the `ldr` and `str` families of instructions. diff --git a/section_1/regs/ldr2.md b/section_1/regs/ldr2.md index 4db0b14..ea3ced3 100644 --- a/section_1/regs/ldr2.md +++ b/section_1/regs/ldr2.md @@ -1,4 +1,4 @@ -# More About `ldr` +# Section 1 / More About `ldr` ## Overview