mirror of
https://github.com/pkivolowitz/asm_book.git
synced 2026-06-21 05:16:46 +08:00
Merge branch 'main' of github.com:pkivolowitz/asm_book
Unsure of what needed merging - but we did just merge some pull requests that I thought were unrelated.
This commit is contained in:
commit
5d8d8d0199
2 changed files with 2 additions and 2 deletions
|
|
@ -182,7 +182,7 @@ most importantly, knowing when to stop.
|
|||
|
||||
### Line 7
|
||||
|
||||
`Line 7` is where is action is. Firstly, `cout` will receive some value
|
||||
`Line 7` is where the action is. Firstly, `cout` will receive some value
|
||||
for printing. `cout` is an output stream and the `<<` indicates
|
||||
something is being shoved into it - i.e. is being output.
|
||||
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ Before we examine using bit fields, let's look at what life would be
|
|||
like without them.
|
||||
|
||||
Let's assume we're working with a byte that is comprised of three
|
||||
fields layed out as in `struct BF` above. That is, a one, two and
|
||||
fields laid out as in `struct BF` above. That is, a one, two and
|
||||
five bit field inside one byte.
|
||||
|
||||
Without bit fields, we would have to write this code to clear `a`
|
||||
|
|
|
|||
Loading…
Reference in a new issue