Hi, Never mind, I understood it.
Edward On 24/06/2016, Edward Bartolo <[email protected]> wrote: > Bitwise Operators: > > Pg 63: > /* getbits: get n bits from position p */ > > unigned int getbits(unsigned int x, int p, int n) > { > return (x >> (p + 1 - n)) & ~(~0 << n); > } > > Why is the book using p + 1 - n?! According to my logic it should use p - > 1. > > Edward > _______________________________________________ Dng mailing list [email protected] https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng
