I have two 256 element byte arrays. If either arr1 or arr2 is set to 0x80 then arr1 should be 0x80. This is what I am doing now:
for(int i=0;i<256;i++)
arr1[i] |= arr2[i];
My question is... Is there a way to do this without the loop?
www.CoderForRent.com
Get A Computer Job!