Depending on a variable 1-7, I am interested in ANDing a byte value to to get that number of bits.
Currently I'm doing this:
function getMaskedBits(num, Bit_location: Byte): Byte;
var
masks: array[1..7]of Byte=(127,63,31,15,7,3,1);
begin
Result:=num and masks[Bit_location];
end;
is there a better (or more efficient way of doing this?)