mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-11 16:46:16 +00:00
More fixes
This commit is contained in:
@@ -5,6 +5,8 @@ template <typename T>
|
||||
class emulator_object
|
||||
{
|
||||
public:
|
||||
using value_type = T;
|
||||
|
||||
emulator_object() = default;
|
||||
|
||||
emulator_object(emulator& emu, const uint64_t address)
|
||||
|
||||
@@ -35,6 +35,7 @@ namespace
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
requires(std::is_same_v<T, emulator_object<typename T::value_type>>)
|
||||
T resolve_argument(x64_emulator& emu, const size_t index)
|
||||
{
|
||||
const auto arg = get_syscall_argument(emu, index);
|
||||
|
||||
Reference in New Issue
Block a user