not8 function

int not8(
  1. int x
)

Implementation

int not8(int x) {
  assert((x >= 0) && (x <= mask8));
  return (~x & mask8);
}