Correct addend in 127+1 example of signed overflow

This commit is contained in:
John Winans 2020-08-31 09:23:15 -05:00
parent 3c32f91de7
commit 9613886753

View File

@ -955,7 +955,7 @@ the most negative value as shown in \autoref{sum:127+1}.
\begin{BVerbatim} \begin{BVerbatim}
0 1 1 1 1 1 1 1 0 <== carries 0 1 1 1 1 1 1 1 0 <== carries
0 1 1 1 1 1 1 1 <== 127 0 1 1 1 1 1 1 1 <== 127
+ 0 0 0 0 1 0 0 1 <== 1 + 0 0 0 0 0 0 0 1 <== 1
--------------------- ---------------------
1 0 0 0 0 0 0 0 <== sum = -128 1 0 0 0 0 0 0 0 <== sum = -128
\end{BVerbatim} \end{BVerbatim}