#include <inttypes.h>

int16_t int16_shrmod(int16_t x,int16_t y)
{
  return x >> (y & 15);
}