tst(Centc);Centc | Cent to test |
com(Centc);Centc | Cent to complement |
neg(Centc);Centc | Cent to negate |
inc(Centc);Centc | Cent to increment |
dec(Centc);Centc | Cent to decrement |
shl1(Centc);Centc | Cent to shift |
shr1(Centc);Centc | Cent to shift |
sar1(Centc);Centc | Cent to shift |
shl(Centc, uintn);Centc | Cent to shift |
uintn | number of bits to shift |
shr(Centc, uintn);Centc | Cent to shift |
uintn | number of bits to shift |
sar(Centc, uintn);Centc | Cent to shift |
uintn | number of bits to shift |
rol1(Centc);Centc | Cent to rotate |
ror1(Centc);Centc | Cent to rotate |
rol(Centc, uintn);Centc | Cent to rotate |
uintn | number of bits to rotate |
ror(Centc, uintn);Centc | Cent to rotate |
uintn | number of bits to rotate |
and(Centc1, Centc2);Centc1 | operand 1 |
Centc2 | operand 2 |
or(Centc1, Centc2);Centc1 | operand 1 |
Centc2 | operand 2 |
xor(Centc1, Centc2);Centc1 | operand 1 |
Centc2 | operand 2 |
add(Centc1, Centc2);Centc1 | operand 1 |
Centc2 | operand 2 |
sub(Centc1, Centc2);Centc1 | operand 1 |
Centc2 | operand 2 |
mul(Centc1, Centc2);Centc1 | operand 1 |
Centc2 | operand 2 |
udiv(Centc1, Centc2);Centc1 | dividend |
Centc2 | divisor |
udivmod(Centc1, Centc2, out Centmodulus);Centc1 | dividend |
Centc2 | divisor |
Centmodulus | set to c1 % c2 |
div(Centc1, Centc2);Centc1 | dividend |
Centc2 | divisor |
divmod(Centc1, Centc2, out Centmodulus);Centc1 | dividend |
Centc2 | divisor |
Centmodulus | set to c1 % c2 |
ugt(Centc1, Centc2);Centc1 | operand 1 |
Centc2 | operand 2 |
uge(Centc1, Centc2);Centc1 | operand 1 |
Centc2 | operand 2 |
ult(Centc1, Centc2);Centc1 | operand 1 |
Centc2 | operand 2 |
ule(Centc1, Centc2);Centc1 | operand 1 |
Centc2 | operand 2 |
gt(Centc1, Centc2);Centc1 | operand 1 |
Centc2 | operand 2 |
ge(Centc1, Centc2);Centc1 | operand 1 |
Centc2 | operand 2 |
lt(Centc1, Centc2);Centc1 | operand 1 |
Centc2 | operand 2 |
le(Centc1, Centc2);Centc1 | operand 1 |
Centc2 | operand 2 |