01
Unsigned — every column adds
What you know: All eight weights are positive powers of two, 1 through 128. Nothing encodes a sign, so nothing can be negative: the range is 0 to 255 and all 256 patterns are in use.
How to read it: w₇ = +128 → 0…255
Worked example: 85 + 11 → 01010101 + 00001011 = 01100000 = 96, with carries rippling up out of the low columns. Push further and 214 + 100 gives 58 in eight bits — the true 314 less 256, with the missing 1 sitting in the carry out.
Open this case: Unsigned add