mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-19 11:43:56 +00:00
Generates a Tenet tracer output with the -t parameter. The original Tenet tracer plugin is outdated, so I made updates to support our emulator. The forked project below works well. https://github.com/maskelihileci/tenet/tree/master/plugins_sogen-support
13 lines
471 B
C++
13 lines
471 B
C++
#pragma once
|
|
|
|
#include <windows_emulator.hpp>
|
|
|
|
namespace snapshot
|
|
{
|
|
std::vector<std::byte> create_emulator_snapshot(const windows_emulator& win_emu);
|
|
std::filesystem::path write_emulator_snapshot(const windows_emulator& win_emu, bool log = true);
|
|
|
|
void load_emulator_snapshot(windows_emulator& win_emu, std::span<const std::byte> snapshot);
|
|
void load_emulator_snapshot(windows_emulator& win_emu, const std::filesystem::path& snapshot_file);
|
|
}
|