libmwemu 0.24.1

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
11
12
use crate::tests::helpers;
use crate::*;

#[test]
// context objects for exception recovering
pub fn exception_handler32() {
    helpers::setup();

    let mut emu = emu32();
    emu.cfg.maps_folder = "../../maps/maps32/".to_string();
    emu.load_code("../../test/exe32win_exception_handler.bin");
}