libmwemu 0.24.3

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 = helpers::win32_maps_folder();
    emu.load_code(&helpers::test_data_path("exe32win_exception_handler.bin"));
}