
/*.
 *  'Cause most C's don't have a "0b10100101" construct,
 *  and it's really handy with micros.
 */

    #define b(b7,b6,b5,b4,b3,b2,b1,b0) ((b7*128+b6*64+b5*32+b4*16+b3*8+b2*4+b1*2+b0))
