From 20d7d36f4cbfd0e2de6e95247cb316f8cb2f6eb7 Mon Sep 17 00:00:00 2001 From: apache Date: Wed, 18 Oct 2017 14:57:33 -0700 Subject: [PATCH] ?? --- pages/about-ephoto.txt | 8 +++----- pages/docs/c/start.txt | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/pages/about-ephoto.txt b/pages/about-ephoto.txt index 1243d0f9c..76512fd52 100644 --- a/pages/about-ephoto.txt +++ b/pages/about-ephoto.txt @@ -10,11 +10,9 @@ Ephoto is an image viewer and editor written using the Enlightenment Foundation === Screenshots === -{{:shot-2017-08-22_07-52-53.jpg?400|}} - -{{:shot-2017-08-22_07-54-31.jpg?400|}} - -{{:shot-2017-08-22_07-53-57.jpg?400|}} +{{:shot-2017-08-22_07-52-53.jpg?400 |}} +{{:shot-2017-08-22_07-54-31.jpg?400 |}} +{{:shot-2017-08-22_07-53-57.jpg?400 |}} diff --git a/pages/docs/c/start.txt b/pages/docs/c/start.txt index 132d0f6ab..b0d3d2fa4 100644 --- a/pages/docs/c/start.txt +++ b/pages/docs/c/start.txt @@ -434,7 +434,7 @@ So only compile the active code in when enabled in the compilation process. ==== Memory ==== -Reality is that languages like C are really a slightly more convenient and portable interface to the actual machine you have. That means the CPU, it's instructions and processing as well as memory that the CPU will access one way or another. Let's visualize just some of this. Imagine memory as simply a series of boxes than can contain a number that has a value from 0 to 255 (if unsigned). To do signed values we just interpret values differently. We can have from -128 to 127 as values. When you hit the maximum value, things wrap around to the minimum. For signed and unsigned the first 128 values are the same in memory. This also is true for shorts, ints, longs and long longs, except it is the lower positive half of the range. To make life easier for computers, we will use [[http://en.wikipedia.org/wiki/Hexadecimal|hexadecimal]] to represent the numbers as raw data (no sign is implied here). +Reality is that languages like C are really a slightly more convenient and portable interface to the actual machine you have. That means the CPU, its instructions and processing as well as memory that the CPU will access one way or another. Let's visualize just some of this. Imagine memory as simply a series of boxes than can contain a number that has a value from 0 to 255 (if unsigned). To do signed values we just interpret values differently. We can have from -128 to 127 as values. When you hit the maximum value, things wrap around to the minimum. For signed and unsigned the first 128 values are the same in memory. This also is true for shorts, ints, longs and long longs, except it is the lower positive half of the range. To make life easier for computers, we will use [[http://en.wikipedia.org/wiki/Hexadecimal|hexadecimal]] to represent the numbers as raw data (no sign is implied here). ^Byte ^Value ^ |0 |01 |