From 2ce932eb74c8617a8e132536ee9988cad4395c10 Mon Sep 17 00:00:00 2001 From: Reiko Asakura Date: Fri, 5 Mar 2021 15:58:08 -0500 Subject: Add comments in common/kernel/cpu.h --- include/common/kernel/cpu.h | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) (limited to 'include') 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 -#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 -- cgit v1.2.3