Tagged Questions

14
votes
6answers
8k views

What is “2's Complement”?

I'm in a computer systems course and have been struggling, in part, with Two's Complement. I want to understand it but everything I read hasn't brought the picture together for me. I've read the ...
2
votes
2answers
108 views

How to add and subtract 16 bit floating point half precision numbers?

How do I add and subtract 16 bit floating point half precision numbers? Say I need to add or subtract: 1 10000 0000000000 1 01111 1111100000 2’s complement form.
1
vote
4answers
114 views

Bitwise Complement

I have a sample problem with w=1, y=7, z=0, x = ~(w && y) | y; and the solution is x = -1, but I can't figure out why? Here is my thought process: (w && y) = (1 && 7) = 1 ~1 1 ...