neg32 function

int neg32(
  1. int x
)

Implementation

int neg32(int x) {
  assert((x >= 0) && (x <= mask32));
  return (-x & mask32);
}