diff options
Diffstat (limited to 'include/common')
-rw-r--r-- | include/common/kernel/cpu.h | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/include/common/kernel/cpu.h b/include/common/kernel/cpu.h index bef0ba9..2757db4 100644 --- a/include/common/kernel/cpu.h +++ b/include/common/kernel/cpu.h @@ -2,15 +2,20 @@ Vita Development Suite Libraries */ -#ifndef _DOLCESDK_PSP2COMMON_KERNEL_CPU_H_ -#define _DOLCESDK_PSP2COMMON_KERNEL_CPU_H_ +#ifndef _VDSUITE_COMMON_KERNEL_CPU_H +#define _VDSUITE_COMMON_KERNEL_CPU_H #include_next <kernel/cpu.h> -#define SCE_KERNEL_CPU_MASK_USER_3 (0x08 << SCE_KERNEL_CPU_MASK_SHIFT) +/** + * @brief システム向けプロセッサ番号3 + */ +#define SCE_KERNEL_CPU_MASK_USER_3 (0x08 << SCE_KERNEL_CPU_MASK_SHIFT) -#define SCE_KERNEL_CPU_MASK_USER_QUAD \ - (SCE_KERNEL_CPU_MASK_USER_0 | SCE_KERNEL_CPU_MASK_USER_1 \ - | SCE_KERNEL_CPU_MASK_USER_2 | SCE_KERNEL_CPU_MASK_USER_3) +/** + * @j @brief システム向けCPUのマスク設定です @ej + */ +#define SCE_KERNEL_CPU_MASK_USER_QUAD \ + (SCE_KERNEL_CPU_MASK_USER_0 | SCE_KERNEL_CPU_MASK_USER_1 | SCE_KERNEL_CPU_MASK_USER_2 | SCE_KERNEL_CPU_MASK_USER_3) -#endif // _DOLCESDK_PSP2COMMON_KERNEL_CPU_H_ +#endif // _VDSUITE_COMMON_KERNEL_CPU_H |