Reputation: 41
I am trying to figure out this question for my Assembly Language Class.
My Professor said that my answer of
-32768
is wrong. How do I figure this out correctly?
13 The largest unsigned 8 bit number in decimal is _______
My answer is255
. Is this correct?
Upvotes: 2
Views: 6401
Reputation: 401
In two's complement: -(2^15) = -32768
sign/magnitude: -(2^15-1) = -32767
Upvotes: 4