mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-18 11:13:57 +00:00
Rename context_frame to cpu_context
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user