Search Results

7
votes
4answers
671 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
134 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 …