neg8 function

int neg8(
  1. int x
)

Implementation

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