neg8 function

int neg8(
  1. int x
)

Implementation

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