Trying to help a friend out with a friend out with some assembly code, but I've run into a small problem.

I'm trying to work out how I would loop through a 8 bit binary word and check the value of specific bits. I need to check bits 1, 3, 5 & 7 to see if they are 1.

i.e.

int count = 1; 
int bitAdd = 0;
foreach (var bit in word) {
    if ((count = 1 && bit = 1) || (count = 3 && bit = 1) || (count = 5 && bit = 1) || (count = 7 && bit = 1)) {
      bitAdd += 1;
    }
    count += 1;
}

Help is much appreciated.

//Edit Sorry, pusdo code was a bit ambiguous. Tried to make it a little more succinct.

link|improve this question

79% accept rate
2  
What have you tried so far - in 6800 code? – anon May 9 '10 at 10:57
1  
You've titled this 6800, but tagged it 68000, which is it? – Jimmeh May 9 '10 at 10:59
This is not 6800 specific, but do you know binary and? (en.wikipedia.org/wiki/Binary_and) If you make a binary and with e.g. 00010000 the result will just contain zeroes if the fifth bit was zero and a non-zero value if the fifth bit was 1. (01101010 && 00010000 = 00000000, 01110110 && 00010000 = 00010000). – phimuemue May 9 '10 at 11:03
@Neil, not a lot so far. I'm really just looking for a starting point. The documentation that this particular class was given isn't exactly easy to navigate. @Jimmeh, it's 6800, I don't have sufficient reputation to create a new tag. @phimuemue, yes I know binary. – Jeremy May 9 '10 at 23:15
feedback

1 Answer

up vote 0 down vote accepted

I think the BTST instruction will be of use to you here.

http://68k.hax.com/BTST

For example:

btst #5, d0

Will check if bit 5 in the value in d0 is set.

(This will work for the 68000, I'm not too sure about the 6800, googling tells me that BITA or BITB instructions might be of use: http://www.textfiles.com/programming/CARDS/6800 )

link|improve this answer
Thanks, I'll look into that. – Jeremy May 9 '10 at 23:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.