#include <inttypes.h>

int8_t int8_shrmod(int8_t x,int8_t y)
{
  return x >> (y & 7);
}