Rename context_frame to cpu_context

This commit is contained in:
Maurice Heumann
2025-02-10 14:28:42 +01:00
parent a2af18787c
commit a5bae30e00
6 changed files with 12 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
#include "emulator_thread.hpp"
#include "context_frame.hpp"
#include "cpu_context.hpp"
#include "process_context.hpp"
namespace
@@ -226,7 +226,7 @@ void emulator_thread::setup_registers(x64_emulator& emu, const process_context&
ctx.ContextFlags = CONTEXT64_ALL;
unalign_stack(emu);
context_frame::save(emu, ctx);
cpu_context::save(emu, ctx);
ctx.Rip = context.rtl_user_thread_start;
ctx.Rcx = this->start_address;