mirror of
https://github.com/pkivolowitz/asm_book.git
synced 2026-06-21 02:06:48 +08:00
Header change - added working.md but it is still empty
This commit is contained in:
parent
689244ff25
commit
b855b91731
9 changed files with 8 additions and 8 deletions
0
section_1/float/working.md
Normal file
0
section_1/float/working.md
Normal file
|
|
@ -1,4 +1,4 @@
|
|||
# For Loops, Continue and Break
|
||||
# Section 1 / For Loops, Continue and Break
|
||||
|
||||
## Overview
|
||||
|
||||
|
|
|
|||
|
|
@ -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).
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# Hello World
|
||||
# Section 1 / Hello World
|
||||
|
||||
## Overview
|
||||
|
||||
|
|
|
|||
|
|
@ -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`.
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# More About `ldr`
|
||||
# Section 1 / More About `ldr`
|
||||
|
||||
## Overview
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue