sub32 function

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

Implementation

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