#include <inttypes.h>

uint16_t uint16_bitmod_mask(uint16_t x,uint16_t y)
{
  x >>= y & 15;
  return -(1 & x);
}