Skip to content

Commit

Permalink
Correct two's complement circuitry note
Browse files Browse the repository at this point in the history
Multiplication is very similar, but not exactly the same as with unsigned integers.
  • Loading branch information
Mabi19 committed May 20, 2024
1 parent 4e2356a commit ad22a1c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content.html
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ <h3>Two's complement</h3>
</div>
<p>
Additionally, two's complement allows us to drop the circuitry for signed addition,
subtraction and multiplication, and if you're familiar with the
subtraction and most of multiplication, and if you're familiar with the
<a href="https://youtu.be/3gyHKCDq1YA">p&hyphen;adic numbers</a> you might already have a hunch as to why.
</p>
<addition-demo value1="0xf6" value2="5"></addition-demo>
Expand Down Expand Up @@ -447,7 +447,7 @@ <h2>A giant gap</h2>
<mn>&minus;127</mn>
</msup>
</mrow>
</math>, then
</math>, then
<math display="inline">
<mrow>
<mn>1.000000238</mn>
Expand Down Expand Up @@ -576,7 +576,7 @@ <h2>Extending the range further</h2>
<p>
So, let's dedicate the current largest regular value's bit pattern to it!
Since our format is symmetric we'll also define a negative counterpart to have the same bit pattern as the positive one
except with the sign bit being 1.
except with the sign bit being 1.
</p>
<floating-point-demo type="large-sentinel" value="0x7fffffff"></floating-point-demo>
<h3>Properties of an indeterminate value</h3>
Expand Down

0 comments on commit ad22a1c

Please sign in to comment.