diff options
author | Reiko Asakura | 2021-03-05 15:58:08 -0500 |
---|---|---|
committer | Reiko Asakura | 2021-03-05 15:58:08 -0500 |
commit | 2ce932eb74c8617a8e132536ee9988cad4395c10 (patch) | |
tree | badc641a4663f2cd70b7d1b48cf9cfc0dc648705 | |
parent | Write sorted file in nids-check-sort (diff) | |
download | vds-libraries-2ce932eb74c8617a8e132536ee9988cad4395c10.tar.gz |
Add comments in common/kernel/cpu.h
-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 |