libmwemu 0.24.5

x86 32/64bits and system internals emulator, for securely emulating malware and other stuff.
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::emu::Emu;
use yaxpeax_arm::armv8::a64::Instruction;

pub fn execute(emu: &mut Emu, _ins: &Instruction) -> bool {
    // MSR <sysreg>, Xt — write Xt to system register
    // For now, ignore writes
    let _ = emu;
    log::trace!("MSR: ignoring write to system register");
    true
}