#include <inttypes.h>

uint8_t uint8_bitmod_mask(uint8_t x,uint8_t y)
{
  x >>= y & 7;
  return -(1 & x);
}