-
-
Notifications
You must be signed in to change notification settings - Fork 414
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Zone.N <[email protected]>
- Loading branch information
Showing
6 changed files
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
|
||
/** | ||
* @file sr.hpp | ||
* @brief aarch64 sr 相关定义 | ||
* @file regs.hpp | ||
* @brief aarch64 寄存器相关定义 | ||
* @author Zone.N ([email protected]) | ||
* @version 1.0 | ||
* @date 2024-03-05 | ||
|
@@ -14,8 +14,8 @@ | |
* </table> | ||
*/ | ||
|
||
#ifndef SIMPLEKERNEL_SRC_KERNEL_ARCH_AARCH64_INCLUDE_CPU_SR_HPP_ | ||
#define SIMPLEKERNEL_SRC_KERNEL_ARCH_AARCH64_INCLUDE_CPU_SR_HPP_ | ||
#ifndef SIMPLEKERNEL_SRC_KERNEL_ARCH_AARCH64_INCLUDE_CPU_REGS_HPP_ | ||
#define SIMPLEKERNEL_SRC_KERNEL_ARCH_AARCH64_INCLUDE_CPU_REGS_HPP_ | ||
|
||
#include <cstdint> | ||
#include <cstdlib> | ||
|
@@ -166,4 +166,4 @@ struct AllXreg { | |
|
||
}; // namespace cpu | ||
|
||
#endif // SIMPLEKERNEL_SRC_KERNEL_ARCH_AARCH64_INCLUDE_CPU_SR_HPP_ | ||
#endif // SIMPLEKERNEL_SRC_KERNEL_ARCH_AARCH64_INCLUDE_CPU_REGS_HPP_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
|
||
/** | ||
* @file csr.hpp | ||
* @brief riscv64 csr 相关定义 | ||
* @file regs.hpp | ||
* @brief riscv64 寄存器相关定义 | ||
* @author Zone.N ([email protected]) | ||
* @version 1.0 | ||
* @date 2024-03-05 | ||
|
@@ -14,8 +14,8 @@ | |
* </table> | ||
*/ | ||
|
||
#ifndef SIMPLEKERNEL_SRC_KERNEL_ARCH_RISCV64_INCLUDE_CPU_CSR_HPP_ | ||
#define SIMPLEKERNEL_SRC_KERNEL_ARCH_RISCV64_INCLUDE_CPU_CSR_HPP_ | ||
#ifndef SIMPLEKERNEL_SRC_KERNEL_ARCH_RISCV64_INCLUDE_CPU_REGS_HPP_ | ||
#define SIMPLEKERNEL_SRC_KERNEL_ARCH_RISCV64_INCLUDE_CPU_REGS_HPP_ | ||
|
||
#include <cstdint> | ||
#include <cstdlib> | ||
|
@@ -166,4 +166,4 @@ struct AllXreg { | |
|
||
}; // namespace cpu | ||
|
||
#endif // SIMPLEKERNEL_SRC_KERNEL_ARCH_RISCV64_INCLUDE_CPU_CSR_HPP_ | ||
#endif // SIMPLEKERNEL_SRC_KERNEL_ARCH_RISCV64_INCLUDE_CPU_REGS_HPP_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
|
||
/** | ||
* @file cr.hpp | ||
* @brief x86_64 cr 相关定义 | ||
* @file regs.hpp | ||
* @brief x86_64 寄存器相关定义 | ||
* @author Zone.N ([email protected]) | ||
* @version 1.0 | ||
* @date 2024-03-05 | ||
|
@@ -14,8 +14,8 @@ | |
* </table> | ||
*/ | ||
|
||
#ifndef SIMPLEKERNEL_SRC_KERNEL_ARCH_X86_64_INCLUDE_CPU_CR_HPP_ | ||
#define SIMPLEKERNEL_SRC_KERNEL_ARCH_X86_64_INCLUDE_CPU_CR_HPP_ | ||
#ifndef SIMPLEKERNEL_SRC_KERNEL_ARCH_X86_64_INCLUDE_CPU_REGS_HPP_ | ||
#define SIMPLEKERNEL_SRC_KERNEL_ARCH_X86_64_INCLUDE_CPU_REGS_HPP_ | ||
|
||
#include <cstdint> | ||
#include <cstdlib> | ||
|
@@ -166,4 +166,4 @@ struct AllXreg { | |
|
||
}; // namespace cpu | ||
|
||
#endif // SIMPLEKERNEL_SRC_KERNEL_ARCH_X86_64_INCLUDE_CPU_CR_HPP_ | ||
#endif // SIMPLEKERNEL_SRC_KERNEL_ARCH_X86_64_INCLUDE_CPU_REGS_HPP_ |