This panel allows the programmer to perform a mathematical operation on two operands. Once the operation has been completed, the result of the operation will be placed into the destination operand that appears to the left of the button panel. The button panel contains five buttons that represent the five available mathematical operations. These buttons correspond to the following statements:

+ : Add the source operand to the destination operand and store the result in the destination operand.

- : Subtract the source operand from the destination operand and store the result in the destination operand.

× : Multiply the source operand by the destination operand and store the result in the destination operand.

÷ : Divide the source operand by the destination operand and store the result in the destination operand.

% : Obtain the value of the destination operand modulus the source operand and store the result in the destination operand.

The operands are restricted to being a register type or an integer data object. The source operand may have any restriction type, while the destination operand may only have a variable restriction. If a literal value is used, it must be within the acceptable range of a signed 32-bit number.

Please note, results of any math operation must have a value within the range of a signed 32-bit number.