libmwemu 0.24.3

x86 32/64bits and system internals emulator, for securely emulating malware and other stuff.
Documentation
// Comprehensive tests for x86_64 arithmetic instructions.
//
// This module contains tests for:
// - NEG (Two's Complement Negation)
// - INC/DEC (Increment/Decrement)
// - IMUL (Signed Multiply)
// - MUL (Unsigned Multiply)
// - DIV (Unsigned Divide)
// - IDIV (Signed Divide)
// - ADCX/ADOX (Multi-precision Arithmetic)
// - BCD (Binary Coded Decimal) arithmetic instructions
// - AAA/AAS (ASCII Adjust After Addition/Subtraction)
// - AAM/AAD (ASCII Adjust After Multiply/Divide)
// - DAA/DAS (Decimal Adjust After Addition/Subtraction)
// - ADC (Add with Carry)
// - SBB (Subtract with Borrow)
// - ADD (Integer Addition)
// - SUB (Integer Subtraction)
// - CMP (Compare Two Operands)

pub mod aaa_aas;
pub mod aam_aad;
pub mod adc_extended;
pub mod adcx_adox;
pub mod add_extended;
pub mod bcd;
pub mod cmp_extended;
pub mod daa_das;
pub mod div;
pub mod idiv;
pub mod imul;
pub mod inc_dec;
pub mod mul;
pub mod neg;
pub mod sbb_extended;
pub mod sub_extended;