Header change - added working.md but it is still empty

This commit is contained in:
Perry Kivolowitz 2022-06-20 10:46:10 -05:00
parent 689244ff25
commit b855b91731
9 changed files with 8 additions and 8 deletions

View file

View file

@ -1,4 +1,4 @@
# For Loops, Continue and Break
# Section 1 / For Loops, Continue and Break
## Overview

View file

@ -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).

View file

@ -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.

View file

@ -1,4 +1,4 @@
# Hello World
# Section 1 / Hello World
## Overview

View file

@ -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`.

View file

@ -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.

View file

@ -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.

View file

@ -1,4 +1,4 @@
# More About `ldr`
# Section 1 / More About `ldr`
## Overview