From 96138867536c0fa5e505386a61379b60b0ee172a Mon Sep 17 00:00:00 2001 From: John Winans Date: Mon, 31 Aug 2020 09:23:15 -0500 Subject: [PATCH] Correct addend in 127+1 example of signed overflow --- book/binary/chapter.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/binary/chapter.tex b/book/binary/chapter.tex index f82a97f..b6217f0 100644 --- a/book/binary/chapter.tex +++ b/book/binary/chapter.tex @@ -955,7 +955,7 @@ the most negative value as shown in \autoref{sum:127+1}. \begin{BVerbatim} 0 1 1 1 1 1 1 1 0 <== carries 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 \end{BVerbatim}