diff options
| author | 2023-12-06 14:19:17 +0100 | |
|---|---|---|
| committer | 2023-12-06 14:19:17 +0100 | |
| commit | 8a79dd2d6c6445bff63ea1f2f5f1611a6afcd97a (patch) | |
| tree | 265bf3c7970a570479c6a3ac1250549995f0329c /src/core/hle/kernel/svc.h | |
| parent | Merge pull request #12271 from liamwhite/pretext-fix (diff) | |
| parent | arm: fix context save of vector regs (diff) | |
| download | yuzu-8a79dd2d6c6445bff63ea1f2f5f1611a6afcd97a.tar.gz yuzu-8a79dd2d6c6445bff63ea1f2f5f1611a6afcd97a.tar.xz yuzu-8a79dd2d6c6445bff63ea1f2f5f1611a6afcd97a.zip | |
Merge pull request #12236 from liamwhite/cpu-refactor
core: refactor emulated cpu core activation
Diffstat (limited to 'src/core/hle/kernel/svc.h')
| -rw-r--r-- | src/core/hle/kernel/svc.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/core/hle/kernel/svc.h b/src/core/hle/kernel/svc.h index ac4696008..828f39611 100644 --- a/src/core/hle/kernel/svc.h +++ b/src/core/hle/kernel/svc.h | |||
| @@ -9,6 +9,8 @@ namespace Core { | |||
| 9 | class System; | 9 | class System; |
| 10 | } | 10 | } |
| 11 | 11 | ||
| 12 | #include <span> | ||
| 13 | |||
| 12 | #include "common/common_types.h" | 14 | #include "common/common_types.h" |
| 13 | #include "core/hle/kernel/svc_types.h" | 15 | #include "core/hle/kernel/svc_types.h" |
| 14 | #include "core/hle/result.h" | 16 | #include "core/hle/result.h" |
| @@ -520,15 +522,15 @@ void CallSecureMonitor64From32(Core::System& system, ilp32::SecureMonitorArgumen | |||
| 520 | void CallSecureMonitor64(Core::System& system, lp64::SecureMonitorArguments* args); | 522 | void CallSecureMonitor64(Core::System& system, lp64::SecureMonitorArguments* args); |
| 521 | 523 | ||
| 522 | // Defined in svc_light_ipc.cpp. | 524 | // Defined in svc_light_ipc.cpp. |
| 523 | void SvcWrap_ReplyAndReceiveLight64From32(Core::System& system); | 525 | void SvcWrap_ReplyAndReceiveLight64From32(Core::System& system, std::span<uint64_t, 8> args); |
| 524 | void SvcWrap_ReplyAndReceiveLight64(Core::System& system); | 526 | void SvcWrap_ReplyAndReceiveLight64(Core::System& system, std::span<uint64_t, 8> args); |
| 525 | 527 | ||
| 526 | void SvcWrap_SendSyncRequestLight64From32(Core::System& system); | 528 | void SvcWrap_SendSyncRequestLight64From32(Core::System& system, std::span<uint64_t, 8> args); |
| 527 | void SvcWrap_SendSyncRequestLight64(Core::System& system); | 529 | void SvcWrap_SendSyncRequestLight64(Core::System& system, std::span<uint64_t, 8> args); |
| 528 | 530 | ||
| 529 | // Defined in svc_secure_monitor_call.cpp. | 531 | // Defined in svc_secure_monitor_call.cpp. |
| 530 | void SvcWrap_CallSecureMonitor64From32(Core::System& system); | 532 | void SvcWrap_CallSecureMonitor64From32(Core::System& system, std::span<uint64_t, 8> args); |
| 531 | void SvcWrap_CallSecureMonitor64(Core::System& system); | 533 | void SvcWrap_CallSecureMonitor64(Core::System& system, std::span<uint64_t, 8> args); |
| 532 | 534 | ||
| 533 | // Perform a supervisor call by index. | 535 | // Perform a supervisor call by index. |
| 534 | void Call(Core::System& system, u32 imm); | 536 | void Call(Core::System& system, u32 imm); |