summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/svc.h
diff options
context:
space:
mode:
authorGravatar Fernando S2023-12-06 14:19:17 +0100
committerGravatar GitHub2023-12-06 14:19:17 +0100
commit8a79dd2d6c6445bff63ea1f2f5f1611a6afcd97a (patch)
tree265bf3c7970a570479c6a3ac1250549995f0329c /src/core/hle/kernel/svc.h
parentMerge pull request #12271 from liamwhite/pretext-fix (diff)
parentarm: fix context save of vector regs (diff)
downloadyuzu-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.h14
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 {
9class System; 9class 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
520void CallSecureMonitor64(Core::System& system, lp64::SecureMonitorArguments* args); 522void CallSecureMonitor64(Core::System& system, lp64::SecureMonitorArguments* args);
521 523
522// Defined in svc_light_ipc.cpp. 524// Defined in svc_light_ipc.cpp.
523void SvcWrap_ReplyAndReceiveLight64From32(Core::System& system); 525void SvcWrap_ReplyAndReceiveLight64From32(Core::System& system, std::span<uint64_t, 8> args);
524void SvcWrap_ReplyAndReceiveLight64(Core::System& system); 526void SvcWrap_ReplyAndReceiveLight64(Core::System& system, std::span<uint64_t, 8> args);
525 527
526void SvcWrap_SendSyncRequestLight64From32(Core::System& system); 528void SvcWrap_SendSyncRequestLight64From32(Core::System& system, std::span<uint64_t, 8> args);
527void SvcWrap_SendSyncRequestLight64(Core::System& system); 529void 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.
530void SvcWrap_CallSecureMonitor64From32(Core::System& system); 532void SvcWrap_CallSecureMonitor64From32(Core::System& system, std::span<uint64_t, 8> args);
531void SvcWrap_CallSecureMonitor64(Core::System& system); 533void 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.
534void Call(Core::System& system, u32 imm); 536void Call(Core::System& system, u32 imm);