mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-24 14:11:02 +00:00
16 lines
305 B
C++
16 lines
305 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>;
|