mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-28 15:31:02 +00:00
16 lines
322 B
C++
16 lines
322 B
C++
#pragma once
|
|
#include "typed_emulator.hpp"
|
|
#include "x64_register.hpp"
|
|
|
|
enum class x64_hookable_instructions
|
|
{
|
|
invalid,
|
|
syscall,
|
|
cpuid,
|
|
rdtsc,
|
|
rdtscp,
|
|
};
|
|
|
|
using x64_emulator = typed_emulator<uint64_t, x64_register, x64_register::rip,
|
|
x64_register::rsp, x64_hookable_instructions>;
|