Tagged Questions

3
votes
7answers
2k views

How are bits stored in memory? (In chunks? Can there be bits of multiple sizes stored toghether?)

I used to think that each memory location contains 8, 16, 32 or 64 bits. So 0101 would be stored in an 8 bit machine as 00000101 (sign extended if it was negative). This was all fine and dandy until I ...
1
vote
5answers
72 views

What are w-bit words?

What are w-bit words in computer architecture ? For two 7 bit words 1011001 = A 1101011 = B , how does multiplication returns 10010100110011 ? Isn't there ...
1
vote
2answers
89 views

How is a 64 bit decimal stored in 32 bit addresses?

I am doing some programming on MIPS which has a bunch of 32 bit registers but I also know that you can store 64 bit integers, how does this work? Does the integer take up two registers? If so how does ...
-4
votes
3answers
60 views

ANDing unsigned binary representations

I am trying to AND two difference binary number. so far that is my code (i posted to pastebin as im not sure i got the layout right on here) http://pastebin.com/FRT6Qig6 My problem is I just dont ...