Hex Editor - Binary File Editing Software for Windows
Download Hex Editor Neo Hide this button

ArithmeticOpType Enumeration

SymbolValueDescription
ArithmeticOpNegation0Arithmetic negation (change sign): x[i] = - x[i];
ArithmeticOpAddition1Arithmetic addition: x[i] += operand;
ArithmeticOpSubrtaction2Arithmetic subtraction: x[i] -= operand;
ArithmeticOpMultiplication3Arithmetic multiplication: x[i] *= operand;
ArithmeticOpDivision4Arithmetic division: x[i] /= operand;
ArithmeticOpRemainder5Arithmetic division remainder: x[i] %= operand;