7
votes
4answers
651 views
How can I tell if a number is a multiple of four using only the logic operator AND?
I'm messing with assembly language programming and I'm curious how I could tell if a number is a multiple of 4 using the logic operator AND?
I know how to do it using "div" or "remainder" i …
2
votes
3answers
131 views
How do I access the state of individual bits of a word in MIPS?
I'm writing a program and I need to determine if bits 3 and 6 are set. I know that I can rotate a word or left/right shift it.
But how do I access individual bit's state? Do I use a bitwi …
2
votes
6answers
298 views
How do I set or clear the first 3 bits using bitwise operations?
Lets say I have a number like 0x448. In binary this is 0100 0100 1000.
How do I set the bits 1, 2 and 3 to either all 0's or all 1's using bit-wise operations? Wh …
