diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-08 01:57:30 -0500 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-08 01:57:30 -0500 |
| commit | 2ddaf86857828500235e8b8a65c11bb2dd91b8be (patch) | |
| tree | 46899c14955bf356be2331e63c181afd4089d982 /include/CompilerKit/Detail | |
| parent | 9f7c44f1577f194cb76b03ac45a2af542a86c8b9 (diff) | |
chore! breaking API changes and new APIs introduced.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/CompilerKit/Detail')
| -rw-r--r-- | include/CompilerKit/Detail/32x0.h | 4 | ||||
| -rw-r--r-- | include/CompilerKit/Detail/64x0.h | 4 | ||||
| -rw-r--r-- | include/CompilerKit/Detail/AMD64.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/include/CompilerKit/Detail/32x0.h b/include/CompilerKit/Detail/32x0.h index fc3e0e9..7172a2d 100644 --- a/include/CompilerKit/Detail/32x0.h +++ b/include/CompilerKit/Detail/32x0.h @@ -9,8 +9,8 @@ #include <CompilerKit/Detail/Config.h> #include <vector> -// @brief Open32x0 support. -// @file Detail/32x0.h +/// @brief Open32x0 support. +/// @file Detail/32x0.h #define CK_ASM_OPCODE(__NAME, __OPCODE, __FUNCT3, __FUNCT7) \ {.fName = __NAME, .fOpcode = __OPCODE, .fFunct3 = __FUNCT3, .fFunct7 = __FUNCT7}, diff --git a/include/CompilerKit/Detail/64x0.h b/include/CompilerKit/Detail/64x0.h index ba539f6..ad909dc 100644 --- a/include/CompilerKit/Detail/64x0.h +++ b/include/CompilerKit/Detail/64x0.h @@ -9,8 +9,8 @@ #include <CompilerKit/Detail/Config.h> #include <vector> -// @brief Open64x0 support. -// @file Detail/64x0.h +/// @brief Open64x0 support. +/// @file Detail/64x0.h #define CK_ASM_OPCODE(__NAME, __OPCODE, __FUNCT3, __FUNCT7) \ {.fName = __NAME, .fOpcode = __OPCODE, .fFunct3 = __FUNCT3, .fFunct7 = __FUNCT7}, diff --git a/include/CompilerKit/Detail/AMD64.h b/include/CompilerKit/Detail/AMD64.h index a123c02..053b0b0 100644 --- a/include/CompilerKit/Detail/AMD64.h +++ b/include/CompilerKit/Detail/AMD64.h @@ -9,8 +9,8 @@ #include <CompilerKit/Detail/Config.h> #include <vector> -// @brief AMD64 support. -// @file Detail/AMD64.h +/// @brief AMD64 support. +/// @file Detail/AMD64.h #define CK_ASM_OPCODE(__NAME, __OPCODE) {.fName = __NAME, .fOpcode = __OPCODE}, |
