sub8 function

int sub8(
  1. int x,
  2. int y
)

Implementation

int sub8(int x, int y) {
  assert((x >= 0) && (x <= _MASK_8));
  assert((y >= 0) && (y <= _MASK_8));
  return (x - y) & _MASK_8;
}