diff options
| author | 2020-12-28 22:42:16 -0800 | |
|---|---|---|
| committer | 2021-01-11 14:23:16 -0800 | |
| commit | 1212fa60b68a4b92fe7715f1bc87c42bc09cba8c (patch) | |
| tree | 0084ac760803d65e57c9008bc9d8a05b6e9dc217 /src/core/hle/kernel | |
| parent | hle: kernel: Remove unnecessary AddressArbiter definition. (diff) | |
| download | yuzu-1212fa60b68a4b92fe7715f1bc87c42bc09cba8c.tar.gz yuzu-1212fa60b68a4b92fe7715f1bc87c42bc09cba8c.tar.xz yuzu-1212fa60b68a4b92fe7715f1bc87c42bc09cba8c.zip | |
core: hle: kernel: Begin moving common SVC defintions to its own header.
Diffstat (limited to 'src/core/hle/kernel')
| -rw-r--r-- | src/core/hle/kernel/svc_common.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/core/hle/kernel/svc_common.h b/src/core/hle/kernel/svc_common.h new file mode 100644 index 000000000..7734bb236 --- /dev/null +++ b/src/core/hle/kernel/svc_common.h | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | // Copyright 2020 yuzu emulator team | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #pragma once | ||
| 6 | |||
| 7 | #include "common/common_types.h" | ||
| 8 | |||
| 9 | namespace Kernel::Svc { | ||
| 10 | |||
| 11 | constexpr u32 HandleWaitMask{1u << 30}; | ||
| 12 | |||
| 13 | } // namespace Kernel::Svc | ||