mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-14 08:12:16 +00:00
* Use a singleton for instruction decoding * Use singleton class * Patch `EXTRQ` * Fixup signal context functions * Update CMakeLists.txt --------- Co-authored-by: georgemoralis <giorgosmrls@gmail.com>
18 lines
No EOL
338 B
C++
18 lines
No EOL
338 B
C++
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "common/types.h"
|
|
|
|
namespace Common {
|
|
|
|
void* GetXmmPointer(void* ctx, u8 index);
|
|
|
|
void* GetRip(void* ctx);
|
|
|
|
void IncrementRip(void* ctx, u64 length);
|
|
|
|
bool IsWriteError(void* ctx);
|
|
|
|
} // namespace Common
|